关于css:CSS杂记

39次阅读

共计 574 个字符,预计需要花费 2 分钟才能阅读完成。

1. 字体

1.1 字体

font-family: 微软雅黑;
font-family: 'Microsoft Yahei';

1.2 粗体

font-weight: normal|bold|bolder|lighter;
也能够用数字:100-700

1.3 斜体

font-style: italic|normal; 斜体

1.4 合乎字体

font: italic 700 16px 'Microsoft Yahei';
程序不能变:

    1. font-style
    1. font-weight
    1. font-size
    1. font-family
      能够只有 3 和 4,但此时两者都得有:
      font: 16px 'Microsoft Yahei';

2. 文本

2.1 文本程度对齐

text-align: center|left|right;

2.2 装璜文本 (上中下加条线)

text-decoration: none|underline|overline|line-through;
a: {text-decoration: none;} // a 标签都不显示下划线
p: {text-decoration: underline;} // p 标签都加下划线
overline= 上划线
line-through= 删除线

2.3 首行缩进

text-indent: 20px; // 每个段落的首行缩进
p: {text-indent: 20px;}
p: {text-indent: 2em;} // 2 个文字

正文完
 0