為了獲得視覺上引人注目的效果,有時需要在 CSS 盒子中引入斜角。這可以立即將一個簡單的矩形轉變為動態且引人注目的元素。
對於支援 CSS3 的瀏覽器,多邊形屬性為此挑戰提供了強大的解決方案。然而,為了更廣泛的瀏覽器相容性,Slantastic 技術 (http://meyerweb.com/eric/css/edge/slantastic/demo.html) 可能是更好的選擇。
HTML:
<div class="cornered"></div> <div class="main">Hello</div>
CSS:
.cornered { width: 160px; height: 0px; border-bottom: 40px solid red; border-right: 40px solid white; } .main { width: 200px; height: 200px; background-color: red; }
<div class="outer"> <div class="cornered">It's possible to put text up here, too... </div> <div class="main">Hello hello hello hello hello hello hello hello hello</div> </div>HTML:
.outer { background-color: #ccffff; padding: 10px; font-size: x-small; } .cornered { width: 176px; height: 0px; border-bottom: 40px solid red; border-left: 40px solid transparent; } .main { width: 200px; height: 200px; background-color: red; padding: 0 8px; }CSS :
以上是如何在 CSS 方塊中建立斜角?的詳細內容。更多資訊請關注PHP中文網其他相關文章!