background-color 属性为元素定义了背景颜色:
<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>

这里写图片描述

font-family、color 以及 font-size 属性分别定义元素中文本的字体系列、颜色和字体尺寸:

<body>
<h1 style="font-family:verdana">A heading</h1>
<p style="font-family:arial;color:red;font-size:20px;">A paragraph.</p>
</body>

这里写图片描述

text-align 属性规定了元素中文本的水平对齐方式:

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

这里写图片描述

posted on 2017-11-12 15:38  2637282556  阅读(70)  评论(0编辑  收藏  举报