Div + CSS
Div 必须和CSS配合使用才能发挥它的作用,否则就是一个普通的标签了。
CSS 4应用种形式
内联式样式表
<P style="font-size:12px;color:red;background-color:green">abcdefg</P>
嵌入式样式表
<head><style><!-- P { ont-size:12px;color:red;background-color:green}//--></style></head>
外部式样式表
<head><link rel="stylesheet" type="text/css" href="style/test.css"></head>
输入式样式表
<head><style><!-- @import url(style/test.css);//--></style></head>
CSS 表达
CSS的选择器
html标记选择器
<style><!-- P { ont-size:12px;color:red;background-color:green}//--></style>
class选择器
<style><!-- P.one { ont-size:12px;color:red;background-color:gray} P.two { ont-size:14px;color:yellow;background-color:red} P.three { ont-size:20px;color:blue,background-color:green}//--></style>.......<p class="one">huuhukh</p><p class="two">utyfyftffy</p><p class="three">6532366h</p>......
<style><!-- .one { ont-size:12px;color:red;background-color:gray} .two { ont-size:14px;color:yellow;background-color:red} .three { ont-size:20px;color:blue,background-color:green}//--></style>.......<p class="one">huuhukh</p><p class="two">utyfyftffy</p><div class="three">6532366h</div><h1 class="one">hhhhhh</h>......
ID 选择器
<style><!-- #one { ont-size:12px;color:red;background-color:gray} #two { ont-size:14px;color:yellow;background-color:red} #three { ont-size:20px;color:blue,background-color:green}//--></style>.......<p id="one">huuhukh</p><p id="two">utyfyftffy</p><p id="three">6532366h</p>......
关联选择器
<style><!-- center p em { ont-size:12px;color:red;background-color:gray} //--></style>.......<center> <p> <em> 5484565</em> </p></center>......
<style><!-- #one .two em { ont-size:12px;color:red;background-color:gray} //--></style>.......<center id="one"> <p class-"two"> <em> 5484565</em> </p></center>......
组合选择器
<style><!-- p,div,a,h1,.one,#two { ont-size:12px;color:red;background-color:gray} //--></style>.......<p> aaaaaaaa </p<div>bbbbbbbb</div><b class="one">ccccccccccc<b/>em> 5484565</em> </p></center>......
伪元素选择器
<style><!-- a:link { font-size:12px;color:red} a:hover { font-size:20px;color:yellow} a:visited { font-size:5px;color:blue} //--></style>.......<a herf ="www.google.com">google</a>......
<style><!-- div a:link { font-size:12px;color:red} a.two:hover { font-size:20px;color:yellow} a.three:visited { font-size:5px;color:blue} //--></style>.......<a herf ="www.google.com">google</a><a class-"two">............
属性
margin可以被认为是外边距
果没有大小限制,margin可以写无限大哦而且还要考虑到相对性,a的下margin是4cm,a不动就是说b往下走4cm了。
margin-right:automargin-left:auto这个就是中间对齐了。
Padding可以被认为是内边距
float
clear