前面的也不再作總結了 後面的例子可以很好的總結前面的例子
慢慢的還是發現IE和其他瀏覽器間的區別
比如margin 和 padding
直接帖我練習的(其實我們在平時有很多功能都沒有用過,從沒有用過)
html: 1
2<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
3<head>
4<title>text test</title>
5<link type="text/css" href="css1.css" media="screen" rel="stylesheet"/>
6</head>
7<body>
8<div id="container">
9<ul>
10<li>Drinks Menu</li>
11<li>Beer</li>
12<li>Spirits</li>
13<li>Cola</li>
14<li>Lemonade</li>
15<li>Tea</li>
16<li>Coffee</li></ul>
17
18</div>
19
20</body>
21</html>
CSS: 1 ul
2 {}{
3 list-style-type:none;/**//*列表方式*/
4 margin:5px;
5 padding:2px;
6 width:200px;
7 border:1px solid #333;
8 font-weight:bolder;
9
10 /**//* list-style-image:url(list2.gif);
11 padding:0 0 0 20px;
12 line-height:200%; 各項間高度*/
13
14 }
15
16 li
17 {}{
18 /**//* display:inline;/*水平排列各項*/
19 background:#DDD url(list2.gif) no-repeat left center; /**//*li 背景圖比ul的list-style-image效果好*/
20
21 padding:2px 25px;
22 margin:0;
23 border-left:1px solid #fff;
24 border-bottom:1px solid #aaa;
25 border-right:1px solid #666;
26 border-top:1px solid #fff;
27
28 }
如下:(效果還不錯吧,慢慢的,用這些基本的技巧,我們可以做出很多好看的效果來)