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>

 posted on 2011-08-01 17:02  Jiang, X.  阅读(200)  评论(0编辑  收藏  举报