2. margin三個值,表示上 左右 下
3.當有多個類選擇器(class)時,依css檔中寫在後面的選擇器為主
4.塊級元素 <div> <p>
行內元素 <a> <span> <input>
5. @import url('檔案位置')
6.
7.
一旦用到浮動,就會被視為block
8.position:relative;left:100px;top:100px; 脫離原本位置,但原位置空間不能被占用
8.補充
a. <!DOCTYPE>
b. dtd, Document Type Definition,定義XML 文件中的元素、元素的屬性、元素的排列方式、元素包含的內容等等c. <ul> 固定會在行頭有一個距離,可以用 padding-left:0; 使歸零(ie5,6,7則須用margin-left:0;),
list-style-type:none寫在ul li下
9.
When setting the style for several link states, there are some order rules:
- a:hover MUST come after a:link and a:visited
- a:active MUST come after a:hover
a:link {
color: red;
}
a:visited {
color: green;
}
a:focus {
color: #000;
}
a:hover {
color: hotpink;
}
a:active {
color: blue;
}
沒有留言:
張貼留言