<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;這一句是什么意思?
2 回答

呼喚遠(yuǎn)方
TA貢獻(xiàn)1856條經(jīng)驗(yàn) 獲得超11個(gè)贊
CSS中font是設(shè)置字體屬性的。
font在css的作用就是在一個(gè)聲明中設(shè)置所有字體屬性:
舉例說明:
<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">這是一個(gè)測試一般字體段落</p>
<p class="ex2">這是一個(gè)測試字體的段落</p>
</body>
</html>
運(yùn)行效果:
添加回答
舉報(bào)
0/150
提交
取消