• 查看如下代码
<body bgcolor="silver" text="blue" >
<h2>h2 texth2>
<hr color="red" />
Some text here.
body>
如果使用 HTML 标记中的属性来定义样式,各
元素对于样式的属性定义各不相同!
<html>
<head>
<style type="text/css">
body
{
background-color:silver;
color:blue;
} 使用 CSS 定义样式
h2
{
background-color:orange;
color:green;
}
hr { color:red; }
style>
head>
<body>
<h2>h2 texth2>
<hr />
Some text here.
body>
html>
使用 CSS:
各元素使用统一的样式声明!
且提高了样式的可重用性和可维护性!
<style type="text/css">
p{
color:red;
font-size:14px;
text-align:center;
}
style>
<p>段落1p>
<p>段落2p>
<p>段落3p>
W3C 建议尽量使用 CSS 样式取代 HTML 属性
内联方式
内部样式表
外部样式表
文本
h1>
<html>
<head>
<style type="text/css">
h1 { color : blue ; }
style>
head>
<body>
<h1>文本1h1>
<h1>文本2h1>
body>
html>