<html>
<body style=\公众background-color:PowderBlue;\"大众>
<h1>Look! Styles and colors</h1>
<p style=\"大众font-family:verdana;color:red\"大众>
This text is in Verdana and red</p>
<p style=\公众font-family:times;color:green\"大众>
This text is in Times and green</p>
<p style=\"大众font-size:30px\公众>This text is 30 pixels high</p>
</body>
</html>
HTML 的 style 属性
style 属性的浸染:
供应了一种改变所有 HTML 元素的样式的通用方法。
样式是 HTML 4 引入的,它是一种新的首选的改变 HTML 元素样式的办法。通过 HTML 样式,能够通过利用 style 属性直接将样式添加到 HTML 元素,或者间接地在独立的样式表中(CSS 文件)进行定义。
不附和利用的标签和属性
在 HTML 4 中,有多少的标签和属性是被废弃的。被废弃(Deprecated)的意思是在未来版本的 HTML 和 XHTML 中将不支持这些标签和属性。
这里传达的信息很明确:请避免利用这些被废弃的标签和属性!
该当避免利用下面这些标签和属性:
HTML 样式实例 - 背景颜色
background-color 属性为元素定义了背景颜色:
<html><body style=\公众background-color:yellow\"大众><h2 style=\"大众background-color:red\公众>This is a heading</h2><p style=\"大众background-color:green\"大众>This is a paragraph.</p></body></html>
HTML 样式实例 - 字体、颜色和尺寸
font-family、color 以及 font-size 属性分别定义元素中文本的字体系列、颜色和字体尺寸:
<html><body><h1 style=\公众font-family:verdana\"大众>A heading</h1><p style=\公众font-family:arial;color:red;font-size:20px;\"大众>A paragraph.</p></body></html>
HTML 样式实例 - 文本对齐
text-align 属性规定了元素中文本的水平对齐办法:
<html><body><h1 style=\"大众text-align:center\"大众>This is a heading</h1><p>The heading above is aligned to the center of this page.</p></body></html>