可以使用多種方法在 CSS 框上實現斜角。下面描述了一種方法:
此技術依賴於沿容器左側建立透明邊框和沿容器左側建立傾斜邊框。底部。以下程式碼示範如何實現此操作:
<code class="HTML"><div class="cornered"></div> <div class="main">Hello World</div></code>
<code class="CSS">.cornered { width: 160px; height: 0px; border-bottom: 40px solid red; border-right: 40px solid white; } .main { width: 200px; height: 200px; background-color: red; }</code>
這將產生一個左上角傾斜 45 度角的盒子。
為了允許傾斜部分內出現文本,可以使用額外的透明邊框。下面修改後的程式碼說明了這個方法:
<code class="HTML"><div class="outer"> <div class="cornered">It's possible to put text up here too but if you want it to follow the slant you have to stack several of these.</div> <div class="main">Hello hello hello hello hello hello hello hello hello</div> </div></code>
<code class="CSS">.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; }</code>
此方法建立一個傾斜邊框,可以沿其長度顯示文字。
以上是如何在 CSS 盒子上創建斜角?的詳細內容。更多資訊請關注PHP中文網其他相關文章!