CSS核心样式-01-字体属性与文本属性
/* 设置字体族 */
p {
font-family: "Helvetica", "Arial", sans-serif;
}
/* 设置字体大小 */
p {
font-size: 16px;
}
/* 设置字体粗细 */
strong {
font-weight: bold; /* 或者使用数值 400, 600 (正常或粗体) */
}
/* 设置字体样式(斜体) */
em {
font-style: italic;
}
/* 设置行间距 */
p {
line-height: 1.5; /* 这里可以是无单位的数值或者具体的长度值 */
}
/* 设置文本的水平对齐方式 */
p {
text-align: center; /* 可选值:left, right, center, justify */
}
/* 设置文本修饰(下划线) */
a {
text-decoration: underline; /* 可选值:none, underline, overline, line-through, inherit */
}
/* 设置文本缩写(使用省略号) */
p {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
这段代码展示了如何使用CSS来设置文本的字体属性,如字体族、大小、粗细、样式、行间距以及对齐方式,还包括了链接文本的修饰和文本的缩写。
评论已关闭