Q
我該如何製作斜坡
3
A
回答
2
這消除了需要了解的主要DIV的寬度。知道了高度仍然是必要的,雖然......
.slope{
width:500px;
height:100px;
background:#0093f7;
text-align:center;
font-size:26px;
color:#fff;
vertical-align:middle;
overflow: visible;
position: relative; <--- this is important
}
.slope:after {
content: "";
position: absolute; <--- works with the above, such that positioning is relative to the main DIV
display: block;
right: -100px;
top: 0px;
width: 0px;
height: 0px;
border-top: solid 100px #0093f7;
border-right: solid 100px transparent;
}
+0
謝謝,我更喜歡這種方法 – Raihan
1
.slope{
width:500px;
height:100px;
background:#0093f7;
text-align:center;
font-size:26px;
color:#fff;
vertical-align:middle;
float: left;
line-height: 100px;
}
.triangle {
float: left;
border-style: solid;
border-width: 100px 100px 0 0;
border-color: #0093f7 transparent transparent transparent;
}
<div class="slope">
Hello
</div>
<div class="triangle"></div>
你能結合這樣的兩個div嗎?
2
基礎上,你知道的.slope
的寬度和高度,其實這隻能。儘管如此,這裏是我的解決方案:
body{margin:0;}
.slope{
width:500px;
height:100px;
background:#0093f7;
text-align:center;
font-size:26px;
color:#fff;
vertical-align:middle;
}
.slope::after{
content: " ";
display: block;
border-right: 50px solid transparent;
border-bottom: 50px solid transparent; \t
border-left: 50px solid #0093f7;
border-top: 50px solid #0093f7;
position:absolute;
left:500px;
top:0;
}
<div class="slope">
Hello
</div>
相關問題
- 1. 如何使用mathematica繪製斜坡場?
- 2. STM32F4 PWM斜坡
- 3. 在斜坡上繪製三角形
- 4. 在斜坡上繪製模型
- 5. 如何在統一的斜坡/地形?
- 6. 如何用緩坡傾斜角?
- 7. 如何走樓梯和斜坡?
- 8. 如何在Matlab中顯示斜坡上的斜率
- 9. 如何在Android中進行斜坡慢動作?
- 10. 繪圖斜坡函數
- 11. Arduino斜坡映射值
- 12. 創建斜坡全寬css3
- 13. Box2D,libGDX斜坡碰撞
- 14. Powershell - 我該如何製作
- 15. xna防止下山斜坡或山坡太陡
- 16. 從地球模型中提取斜坡
- 17. 「斜坡」是什麼意思在名稱
- 18. 熱圖ggplot2顏色斜坡(scale_fill_gradient)
- 19. 在Cgfx中創建斜坡着色器
- 20. 在圖中找到斜坡的起點
- 21. FlashDevelop:AS3在陡峭的斜坡上停頓
- 22. MATLAB曲線擬合與斜坡
- 23. 問題與反斜坡鼠疫和re.split
- 24. GGPLOT2:圖例標識多個geom_abline斜坡
- 25. Sage plot斜坡場和微分方程
- 26. kendoui面積圖 - 垂直斜坡?
- 27. 識別斜坡上的重大變化
- 28. 在斷點前後找到斜坡
- 29. 如何使FBX模型在斜坡上爬升
- 30. 虛擬變量作爲無攔截器的斜坡移位器
粘貼您的問題到谷歌產生http://tympanus.net/codrops/2011/12/21/slopy-elements- with-css3 /作爲第一個結果。 –