CSS的作用:
被用来格式化HTML文档
插入样式的方法:
外部样式表
目的:
适合格式化多个页面,减少工程量。
用法:
每个html页面使用标签(在页面头部)链接到样式表中,代码如下:
<head>
<link rel="stylesheet" type="text/css" href="demo.css">
</head>
浏览器将会从demo.css文件里读取相应的样式来格式化html页面,在写css的过程中要注意格式。
内部样式表
目的;
适合格式化单个html中许多相同的标签。
用法:
在<head>标签中写入<style>标签,示例代码如下:
<head>
<style>
h1,h2,h3,h4,h5,h6{padding:0px;margin:0px}
body{margin:0px auto;padding: 0px auto;border: 0px auto;background:repeat-x;font-size: 12px;background-image:url(image/body_bg.png); }
</style>
</head>
内联样式
目的:
对页面中的每一个标签单独设置显示样式,但是过于繁琐,代码冗杂。
用法:
页面中的每一个标签都用个单独的style属性设置。示例代码如下:
<div id="showmes" style="background-color: #33eeff;height: 400px;width: 5%;float: left;"></div>