1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
| *,h2,h3,ul,img{ margin: 0; padding: 0; } ul{ list-style: none; } a{ text-decoration: none; } .menu{ position: fixed; top: 100px; left: 50%; margin-left: 500px; } .menu a{ display: block; width: 90px; height: 50px; line-height: 50px; text-align: center; color: #333; margin:3px 0; background: #ccc; } .menu a:hover,.menu a.active{ color: #fff; background: blue; } .content{ width: 1000px; margin: 0 auto; } ul:before,ul:after{ display: table; content: ''; } ul:after{ clear: both; } .item ul li{ float: left; width: 50%; } ul li img{ width: 100%; } .item{ margin: 20px 0; border:1px solid #ccc; } .item h3{ margin-bottom: 10px; padding: 10px 0; border-bottom: 1px solid green; }
|