How to create a circumference with CSS? -
i have following markup:
<ul> <li><a href="#1"></a></li> <li><a href="#2"></a></li> <li><a href="#3"></a></li> </ul>
is possible make a tags become circumferences?
i know how make them circles using border-radius
...
but how make them circumferences?
thank you, miguel
do mean show circumference this?
ul { list-style: none; margin: 0; padding: 0; } li { width: 100px; height: 100px; border-radius: 100px; border: 5px solid #c00; }
<ul> <li><a href="#1"></a></li> <li><a href="#2"></a></li> <li><a href="#3"></a></li> </ul>
Comments
Post a Comment