用CSS+DIV寫的實作在網頁中顯示圓角矩形的程式碼!希望對大家有用!謝謝支持!
以下為引用的內容:
<style> div.bg{background:#ffc20e;width:50%} b{display:block;} /*將所有B標籤轉成區塊級元素*/ div b.topb b,div b.bottomb b{height:1px;overflow:hidden;background:#ffc20e;} /*div標籤內類別名為topb/bottomb的那個b標籤的css屬性值--高為1px,溢出部份隱藏,背景色同div.bg的背景色*/ div b.topb,div b.bottomb{ background-color:white} /*div標籤內類別名為topb/bottomb的背景色要與body背景色一致*/ b.t1{margin:0 5px} /*標籤margin值將決定溢出的多少值被隱藏*/ b.t2{margin:0 3px} b.t3{margin:0 2px} b.t4{margin:0 1px;height:2px;} </style> <div align="center"> <div class="bg"> <b class="topb"><!--**此b標籤所包含的b標籤要進行溢出隱藏**--> <b class="t1"></b> <b class="t2"></b> <b class="t3"></b> <b class="t4"></b> </b> <br /> 這個代碼是網頁教學網從互聯網收集整理所得, 謝謝支持! <br /> <br /> <b class="bottomb"> <b class="t4"></b> <b class="t3"></b> <b class="t2"></b> <b class="t1"></b> </b> </div> </div> |