/* ::-webkit-scrollbar{display: none}/* 取消overflow的默認下拉條 */ */ .v1{float: left;height: 30px;width: 30px;background-color: #333;} .v2{height: 130px;width: 130px;background-color: #999;} .fa{overflow: hidden;border:5px solid red; width: 1160px} .b1{width: 230px;background-color: brown;} .b2{width: 700px;background-color: burlywood;} .b3{width: 230px;background-color:#333;} .b1,.b2,.b3{height: 50px;float: left;} .bottom{height: 100px;width: 100%;background-color: darkblue;}
<div class="v1"></div> <div class="v2"> 文字環繞文字環繞文字環繞文字環繞,v2區域在v1區域下面,背景色能夠看到 </div> <div class="fa"> <div class="b1"></div><div class="b2"></div><div class="b3"></div> </div> <div class="bottom"></div> <!-- 只設置高度的時候,圖片等比例縮放,若是同時設置了寬度和高度,只要考慮圖片比例變形的結果--> <img src="img/top.jpg" width="100%" title="圖片劃上去圖片出現的提示" alt="圖片加載失敗後出現的字"> <img src="" width="100%" >
.nav{height: 100px;background: #111} .nav ul{list-style: none;width: 980px;background: #777;margin: 0 auto;overflow: hidden;} .nav ul li{float: left;border-right: 1px #999 solid} .nav ul li .last{border-right: none} .nav ul li a{display:block;width: 139px;height: 100px;line-height: 100px;text-align: center;text-decoration: none} .nav ul li a:hover{background:orangered}
htmlcss
<div class="nav"> <ul> <li><a href="#">集團信息</a></li> <li><a href="#">集團信息</a></li> <li><a href="#">集團信息</a></li> <li><a href="#">集團信息</a></li> <li><a href="#">集團信息</a></li> <li><a href="#">集團信息</a></li> <li class="last"><a>集團信息</a></li> </ul> </div>
.imgmd{height: 500px;width: 500px;position: relative;} .list{position: absolute;bottom: 10px;right: 5px;} .list a{float: left;height: 30px;width: 30px;background: rgba(0,0,0,.7);margin-right: 5px;text-decoration: none;text-align: center;line-height: 30px;color: #fff} .list a:hover{background: rgba(0,0,0,1);} .imglist{overflow: hidden;height: 500px;width: 500px;}
htmlhtml
<div class="imgmd"> <div class="list"> <a href="#img1">1</a> <a href="#img2">2</a> <a href="#img3">3</a> <a href="#img4">4</a> </div> <div class="imglist"> <img src="../img/1.jpg" id="img1" /> <img src="../img/2.jpg" id="img2" /> <img src="../img/3.jpg" id="img3" /> <img src="../img/4.jpg" id="img4" /> </div> </div>
.cssimg{width: 200px;height: 22px;overflow: hidden;list-style: none;} .cssimg li{float: left;} .cssimg li a{display: block;height: 22px;width: 50px;background: url(/img/1.jpg);text-align: center;text-decoration: none;line-height: 22px} .p2 a{background: url(/img/1.jpg) -50px 0;} .p3 a{background: url(/img/1.jpg) -100px 0;} .p4 a{background: url(/img/1.jpg) -150px 0;} .p2 a:hover{background: url(/img/1.jpg) -50px -22px;} .p3 a:hover{background: url(/img/1.jpg) -100px -22px;} .p4 a:hover{background: url(/img/1.jpg) -150px -22px;}
htmljava
<ul class="cssimg"> <li class="p1"><a href="#">新聞</a></li> <li class="p2"><a href="#">新聞</a></li> <li class="p3"><a href="#">新聞</a></li> <li class="p4"><a href="#">新聞</a></li> </ul>
.textul{border: 1px solid #333;} .textul .p1{width: 100px;text-overflow: ellipsis;white-space: nowrap;border: 1px solid #222;overflow: hidden;}
htmlweb
<ul class="textul"> <li class="p1"><a href="#">新聞sfdfsffsdfsfsdf</a></li> <li class="p2"><a href="#">新聞</a></li> <li class="p3"><a href="#">新聞</a></li> <li class="p4"><a href="#">新聞</a></li> </ul>