接上篇 這次About CSS
Baic部分
格式
注釋用
selector上 #id .class (别用數字開頭 會有問題)
引用css的3種方式
外部引用:
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css" target="_blank" rel="external nofollow" />
</head>
内部:
<head>
<style type="text/css">
hr {color:sienna;}
p {margin-left:20px;}
body {background-image:url("images/back40.gif");}
</style>
</head>
行内
<p style="color:sienna;margin-left:20px">This is a paragraph.</p>
當重複設定時 行内>内部>外部(當head中 外部寫在了style内部後 外部樣式将覆寫内部樣式)
Style部分
background: color image repeat attachment position
text: color derection letter-spacing line-height text-align text-decoration text-indent text-shadow
text-transform unicode-bidi vettical-align white-space word-spacing
font: font-family font-size font-style font-variant font-weight size中 w3c推薦用em 1em=16px
link: a:link a:visited a:hover a:active
list: list-style list-style-image list-style-position list-style-type
table: border border-collapse width height text-align padding color background-color
BoxModel
border outline margin padding
Advanced部分
相同的 h1{} h2{} ...
寫成
h1,h2,..{}
p, .marked和.marked p
visibility:hidden隐藏仍占空間 display:none隐藏不占空間
。。。之後大多都是各種屬性設定的應用包括positioning floating align等等