回答
確實有方法來創建CSS三角形,這裏是從css-tricks.com部分:
.arrow-right {
width: 0;
height: 0;
border-top: 60px solid transparent;
border-bottom: 60px solid transparent;
border-left: 60px solid green;
}
謝謝,我知道我之前看到過的東西,但無法找到信息。 – L84
這應該是一個良好的開端 http://css-tricks.com/snippets/css/css-triangle/
HTML
<div class="arrow-left"></div>
<div class="arrow-body"></div>
CSS
.arrow-left { float:left; width: 0; height: 0; border-top: 20px solid transparent; border-bottom: 20px solid transparent; border-right:20px solid blue; }
.arrow-body{ float:left; width:200px; height:40px; background-color:Blue;}
浮動元素給它一個隱含的'display:block;' - 所以使用'float:left;'和'display:inline-block;'是矛盾的。 (也只是看到你使用了'position:inline-block;' - 這完全無效)。 –
感謝瑞安Wheale。更新了我的帖子。 – Tariqulazam
是,但不能同時支持IE7:
<a class="tab">Your label text</a>
.tab {
background: black;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
position: relative;
}
.tab::before {
content: " ";
position: absolute;
right: 100%;
top: 0;
width: 0;
height: 0;
border-width: 35px; /* play with this value to match the height of the tab */
border-style: solid;
border-color: transparent black transparent transparent;
}
這裏是另外一個
<div></div>
div{
width:500px;
height:100px;
background-color:black;
border-top-right-radius:10px;
border-bottom-right-radius:10px;
margin-left:100px;
}
div:before{
width:0;
height:0;
content:"";
display:inline-block;
border-top:50px solid transparent;
border-right:100px solid black;
border-bottom:50px solid transparent;
position:absolute;
left:0;
}
- 1. CSS問題,創建標籤
- 2. 創建標籤/日用標籤構建
- 3. svn創建標籤標籤
- 4. 標籤一個git用「標籤」標籤
- 5. 創建一個標籤/值(只讀)使用Zend Framework 2
- 6. 創建一個水晶報表交叉標籤「標題」標籤
- 7. 創建標籤使用mailcore2
- 8. 使用一個標籤CSS樣式的其他標籤?
- 9. 用CSS創建標籤矩形
- 10. 用按鈕創建一個標籤textField
- 11. 用標籤創建一個dojo按鈕
- 12. 使用哪一個 - HTML標籤或天冬氨酸:標籤
- 13. 標籤或標籤?
- 14. 使用CSS定位第一個標籤
- 15. 使用JavaScript創建一組標籤
- 16. 從現有的git標籤創建一個svn標籤
- 17. Java文本字段點擊標籤來創建一個標籤
- 18. Emacs:創建一個自定義的標籤欄標籤欄
- 19. 從Perforce中的另一個標籤創建標籤
- 20. 只有一個標籤
- 21. 從以前的標籤創建標籤
- 22. LWUIT標籤:創建自定義標籤
- 23. 創建多個Git標籤
- 24. 要創建兩個標籤
- 25. 使用css或javascript添加標籤
- 26. 如何啓用jQuery UI的標籤只是一個標籤
- 27. CSS - 從div標籤調用另一個div標籤
- 28. 通過標籤ID或名稱爲特定標籤創建single.php
- 29. LWUIT標籤創建
- 30. VBA標籤創建
在Google上搜索,你會發現一些。該形狀是三角形和矩形之間的組合。這裏是三角形,http://css-tricks.com/snippets/css/css-triangle/ –