0
A
回答
1
試試這個
HTML
<div id="pointed"> Arrow </div>
CSS
#pointed {
position: relative;
margin: 0 auto;
width: 200px;
height: 200px;
background-color: black;color:white
}
#pointed::after {
position: absolute;
top: 100%;
left: 30%;
content: '';
width: 0;
height: 0;
border-top: solid 10px black;
border-left: solid 10px transparent;
border-right: solid 10px transparent;
}
0
try this
<div id="pointed"> <a href="#">Arrow </a></div>
#pointed {
position: relative;
margin: 0 auto;
width: 200px;
height: 200px;
background-color: black;color:white
}
#pointed:active::after {
position: absolute;
top: 100%;
left: 45%;
content: '';
width: 0;
height: 0;
border-top: solid 10px black;
border-left: solid 10px transparent;
border-right: solid 10px transparent;
}
相關問題
- 1. 當鼠標懸停在按鈕上時,按鈕添加按鈕
- 2. jquery添加id到按鈕時,動態添加按鈕
- 3. 添加按鈕
- 4. 添加按鈕
- 5. 添加按鈕
- 6. 添加按鈕
- 7. 添加按鈕
- 8. 添加創建下拉按鈕,在HTML
- 9. 在HTML中添加操作按鈕
- 10. 在HTML中添加一個按鈕
- 11. 的Android:重新按下按鈕時動態添加按鈕
- 12. 基於按鈕值添加類按鈕
- 13. 如何將primefaces按鈕懸停效果添加到html按鈕
- 14. 在運行時向JQuery按鈕組添加單選按鈕
- 15. 活動在按下按鈕時關閉
- 16. 按鈕在HTML
- 17. 激活/添加一個按鈕,TinyMCE的
- 18. jquery分頁添加活動按鈕
- 19. 將按鈕添加到列表活動
- 20. ReactJs添加活動類到按鈕
- 21. 當按鈕按下按鈕時,在HTML按鈕上捕獲mousedown事件
- 22. Android添加按鈕
- 23. 添加TR按鈕
- 24. 添加按鈕EntryElement
- 25. 按鈕添加列?
- 26. 添加按鈕android.view.View
- 27. 添加右按鈕在NavigationController
- 28. 在tabbarcontroller上添加按鈕
- 29. 在MFMessageComposeViewController中添加按鈕
- 30. 在UITextField中添加按鈕
你究竟試過了什麼?請對你所做的事情做一個[JSFiddle](http://www.jsfiddle.net),所以我們可以從那裏幫助你。 – MarcoK