首页 > 开发学院  >  前端  > 

前端

CSS简单常用属性的总结

时间:2023-05-26 16:09:06阅读数:0

括号中内容为快捷键。

1、字体颜色(c)

color:red;

2、字号大小(fos)

font-size:40px;

3、背景颜色(bgc)

background-color: blue;

4、加粗(fwb)

font-weight: bold;

5、不加粗(fwn)

font-weight: normal;

6、斜体(fsi)

font-style: italic;

7、不斜体(fsn)

font-style: normal;

下划线(tdu)

text-decoration: underline;

没有下划线(tdn)

text-decoration:none;

相关文章