首页 > Web开发 > 详细

HTML 样式

时间:2019-02-02 12:43:43      阅读:228      评论:0      收藏:0      [点我收藏+]

style 属性用于改变 HTML 元素的样式,常见的样式如下:

定义字体颜色:style="color:red"
定义字体大小:style="font-size:20px"
定义字体类型:style="font-family:verdana"
定义文本对齐方式:style="text-align:center"
定义背景颜色:style="background-color:PowderBlue"

<!DOCTYPE HTML>
<html>
<body>

<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; background-color:PowderBlue"> This text is 30 pixels high and PowderBlue</p>

</body>
</html>

效果如下:

This text is in Verdana and red

This text is in Times and green

This text is 30 pixels high and PowderBlue

 

 

 

 

 

 

 

 

      

HTML 样式

原文:https://www.cnblogs.com/pzk7788/p/10347737.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!