意思是: 字体12像素 行高 1.5em 字体 Arial

可以参考下面资料:

我们常用的font属性有下面这六种:

  font-style设定斜体 如:font-style: italic;

  font-weight设定文字粗细 如:font-weight: bold;

  font-size设定文字大小 如:font-size: 12px;

  line-height设定行距 如:line-height: 150%;

  color设定文字颜色(注意不是font-color) 如:color: red;

  font-family设定字体 如:font-family : "Lucida Grande", Verdana, Lucida, Arial, Helvetica, 宋体,sans-serif;  

上述的属性,我们可以概括写在一行font属性里。

 

需要注意的是color属性我们需要单独定义

body{

  font: italic bold 12px/1.5 "Lucida Grande", Verdana, Lucida, Arial, Helvetica, 宋体,sans-serif;

}

相关文章:

  • 2022-01-14
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-07
  • 2021-12-24
  • 2021-05-22
猜你喜欢
  • 2021-12-08
  • 2021-08-15
  • 2021-10-28
  • 2021-11-17
  • 2021-11-19
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案