2013-01-25 53 views
0

enter image description here添加尖端按鈕時按鈕活性在HTML

enter image description here

如何添加尖端的第二圖像時,它是活動的。我試過這個example來顯示提示,但我沒有幫助我的要求。

謝謝。

+0

你究竟試過了什麼?請對你所做的事情做一個[JSFiddle](http://www.jsfiddle.net),所以我們可以從那裏幫助你。 – MarcoK

回答

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; 
} 

DEMO

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; 
}