CSS 的使用方法可在 CSS 2.0 手册 中查询 ;
这里以 查询 font-weight 字体粗细设置 为例 , 在文档左侧的 " 属性 | 字体 | font-weight " 中 , 可以找到该文档 ;
在右侧的 语法 和 参数 中 , 详细的说明了 属性的作用 , 以及 属性值如何设置 ;
此外 , 还可以在 CSS 2.0 手册的 搜索栏 , 搜索该属性 ;
在 HTML 中可以使用
标签 , 实现 文本粗体显示 ;
如果 使用 标签 粗体显示 , 则可以使用 CSS 设置其 不加粗 ;
在 CSS 中 , 可使用 font-weight 设置 字体粗细 ;
font-weight 属性值设置 :
代码示例 :
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Google</title>
<base target="_blank"/>
<style>
body {
font-size:16px;
font-family:"宋体";
<!--font-weight:normal;-->
font-weight:400;
}
.tittle {
font-size:20px;
font-family:"黑体",Arial,"微软雅黑","Microsoft Yahei";
<!--font-weight:bold;-->
font-weight:700;
}
</style>
</head>
<body>
<p class="tittle">静夜思</p>
<p>床前明月光</p>
<p>疑是地上霜</p>
<p>举头望明月</p>
<p>低头思故乡</p>
</body>
</html>
运行效果 :
在 HTML 中可以使用
标签 , 实现 文本斜体显示 ;
如果 使用 标签 斜体显示 , 则可以使用 CSS 设置其 不倾斜 ;
在 CSS 中 , 可使用 font-style 设置 字体粗细 ;
body {
font-style:italic;
}
font-style 属性值设置 :
代码示例 :
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Google</title>
<base target="_blank"/>
<style>
body {
font-size:16px;
font-family:"宋体";
<!--font-weight:normal;-->
font-weight:400;
font-style:italic;
}
.tittle {
font-size:20px;
font-family:"黑体",Arial,"微软雅黑","Microsoft Yahei";
<!--font-weight:bold;-->
font-weight:700;
}
</style>
</head>
<body>
<p class="tittle">静夜思</p>
<p>床前明月光</p>
<p>疑是地上霜</p>
<p>举头望明月</p>
<p>低头思故乡</p>
</body>
</html>
显示效果 :
font 字体样式综合写法语法 :
选择器 { font:font-style font-weight font-size/line-height font-family;}
上述 字体样式 的顺序 , 不能打乱 , 必须严格遵守 ;
字体样式 属性值 之间 , 使用空格隔开 ;
font-size 和 font-family 两个样式必须写 , 其它样式可以省略 ;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Google</title>
<base target="_blank"/>
<style>
body {
font-size:16px;
font-family:"宋体";
<!--font-weight:normal;-->
font-weight:400;
font-style:italic;
}
.tittle {
font-size:20px;
font-family:"黑体",Arial,"微软雅黑","Microsoft Yahei";
<!--font-weight:bold;-->
font-weight:700;
font-style:italic;
}
</style>
</head>
<body>
<p class="tittle">静夜思</p>
<p>床前明月光</p>
<p>疑是地上霜</p>
<p>举头望明月</p>
<p>低头思故乡</p>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Google</title>
<base target="_blank"/>
<style>
body {font: italic 400 16px "宋体"}
.tittle {font: italic 700 20px "黑体"}
</style>
</head>
<body>
<p class="tittle">静夜思</p>
<p>床前明月光</p>
<p>疑是地上霜</p>
<p>举头望明月</p>
<p>低头思故乡</p>
</body>
</html>