css3 - Adding a border to an element with border-radius -


funnily enough isn't working me in firefox, ideas why border isn't showing?

css

.cue-points ul li a{     text-indent:-9999px;     -webkit-border-radius: 180px;     -moz-border-radius: 180px;     border-radius: 180px;     border:1px solid #000;     display:block;     height:15px;     width:15px; } 

html

<a href="#one">one</a> 

check .cue-points ul li a

usually missing there
thsi wil work fine

a{     text-indent:-9999px;     -webkit-border-radius: 180px;     -moz-border-radius: 180px;     border-radius: 180px;     border:1px solid #000;     display:block;     height:15px;     width:15px; } 

and if want use clas can write

 .cue-points  

or

 .cue-points  li 

demo :

http://jsfiddle.net/kougiland/qlmh3/


Comments

Popular posts from this blog

java - Run a .jar on Heroku -

java - Jtable duplicate Rows -

validation - How to pass paramaters like unix into windows batch file -