求助,请问一下在CSS中font是什么意思?

<html>
<head>
<style type="text/css">
h1 {
font: 28px Verdana;
color: blue;
background: red;
}
</style>
</head>
<body>
<h1>This is heading 1</h1>
</body>
</html>
font: 28px Verdana;这一句是什么意思?

MYYA
浏览 499回答 2
2回答

呼唤远方

CSS中font是设置字体属性的。font在css的作用就是在一个声明中设置所有字体属性:举例说明:<html><head><style type="text/css">p.ex1{font:italic arial,sans-serif;}p.ex2{font:italic bold 12px/30px arial,sans-serif;}</style></head><body><p class="ex1">这是一个测试一般字体段落</p><p class="ex2">这是一个测试字体的段落</p></body></html>运行效果:
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

CSS3
Java