指定內(nèi)容溢出元素的框,會發(fā)生什么。
值 | 描述 |
---|---|
visible | 默認(rèn)值 |
hidden | 內(nèi)容被修剪,超出內(nèi)容不可見 |
scroll | 內(nèi)容被修剪,滾動條顯示 |
auto | 如果內(nèi)容超出,便修剪,滾動條顯示 |
inherit | 從父元素繼承 |
盒子之間會相互影響,可以設(shè)置隱藏
background-color: transparent;
盒子還在,內(nèi)容或子級標(biāo)簽會被顯示,例如盒子中有文本,盒子被隱藏,文本會被顯示
opacity: 0;值:0~1
盒子真正意義上透明,但盒子區(qū)域占位還在
display:none;
將盒子從文檔中移除,盒子的區(qū)域占位消失,當(dāng)盒子重新獲得顯示時,該盒子依舊從消失位置顯示。
html:<div class="bd"></div>css:.bd { width: 100px; height: 100px; background-color: transparent;}.bd { /*border: 50px solid orange;*/ border-top: 50px solid orange; /*border-right: 50px solid cyan;*/ /*border-bottom: 50px solid yellow;*/ /*border-left: 50px solid blue;*/ border-right: 50px solid transparent; border-bottom: 50px solid transparent; border-left: 50px solid transparent;}
通過設(shè)置邊框?qū)崿F(xiàn)
.bd { width: 0; height: 0;}.bd { border-top: 50px solid orange; border-right: 50px solid cyan; border-bottom: 50px solid yellow; border-left: 50px solid blue;}
來源:http://www.icode9.com/content-4-26311.html
聯(lián)系客服