mcl19909949541

HTML 样式

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

<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>

在这里插入图片描述
style 属性的作用:
提供了一种改变所有 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>

在这里插入图片描述

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>

在这里插入图片描述

分类:

技术点:

相关文章: