HTML 样式

style 属性用于改变 HTML 元素的样式。

<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 样式实例 - 背景颜色

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>

style 属性淘汰了“旧的” bgcolor 属性。


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>

 

posted @ 2022-02-24 15:42  F11  阅读(78)  评论(0)    收藏  举报