您的位置:首页 > Web前端 > CSS

CSS——字体属性

2016-07-24 09:13 525 查看
字体属性比较多,就不多列举,需要的时候可以查技术手册;

主要介绍几个常见的;

font    它是个复合属性。严格按照文档的顺序填写相应的格式
font-family  规定文本的字体
font-size   字体的大小
font-weight 字体的粗细
font-style  字体的样式
font-variant    是否以小型大写字母的字体显示文本


<html>
<head>
<title>CSS选择器5</title>

<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html;charset=utf-8">

<!-- -->
<style type="text/css">
/*p{
font-family:黑体;
font-size:25px;
font-weight:900;
font-style:oblique;
font-variant:small-caps;
}*/

p{

font:oblique small-caps 900 25px 黑体;
}
</style>

</head>
<body>
<p >窗前明月光,疑是地上霜!hello my love!</a><br/>
</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  css 字体 文档 技术