我只是做一個箭頭在CSS中使用此代碼:問題接壤
.icon{
height: 0;
width: 0;
border: solid transparent;
border-width: 10px;
border-left-color: aquamarine;
border-top-color: saddlebrown;
border-right-color: salmon;
border-bottom-color: steelblue;
}
<div class="icon"></div>
正確的三角形:
和結果是4個正確的三角形 但是當我使用相同的代碼在其他地方的結果看起來像下面的圖片,劃分框的寬度和高度是不一樣的。
不正確的三角形:
別的地方意味着你在哪裏使用? – Sree
在**其他地方**有一條規則覆蓋你的* .icon *'height:0;'規則。 – dNitro
我在另一個文件中編寫了完全相同的代碼!包含'height:0;' – saru