字体类型
table{
font-family: SimSun,"Times New Roman",Serif;}
font-family:
宋体 | SimSun |
黑体 | SimHei |
微软雅黑 | Microsoft YaHei |
如果字体有空格需要用引号括起来,从前往后执行字体,最后一个最好是字体系列
字体系列:
Serif
Sans-serif
Monospace
Cursive
Fantasy
其他字体:
http://www.xwbetter.com/font-family/
字体倾斜:
table{
font-style: italic;
}
normal | 默认值。浏览器显示一个标准的字体样式。 |
italic | 浏览器会显示一个斜体的字体样式。 |
oblique | 浏览器会显示一个倾斜的字体样式。 |
inherit | 规定应该从父元素继承字体样式。 |
文本粗细
table{
font-weight: bold;
}
或者
table{
font-weight: 700;
}
normal | 默认值。定义标准的字符。 |
bold | 定义粗体字符。 |
bolder | 定义更粗的字符。 |
lighter | 定义更细的字符。 |
| 定义由粗到细的字符。400 等同于 normal,而 700 等同于 bold。 |
inherit | 规定应该从父元素继承字体的粗细。 |