赞
踩
CSS 是从 HTML4 开始使用的,是为了更好的渲染 HTML 元素而引入的。
CSS 在 HTML 中的使用方式如下所示:
1. 内联样式:
<h1 style="text-align:center;">居中对齐的标题</h1>
2. 内部样式表:
<head> <style type="text/css"> body {background-color:yellow;} p {color:blue;} </style> </head>3. 外部样式
<head> <link rel="stylesheet" type="text/css" href="mystyle.css"> </head>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。