+ 2
css
how i can make border for liknks ?
3 Respostas
+ 1
for graphic works and i don t now how too work but i will learn and say
+ 1
a {
padding: 10px;
text-decoration: none;
border: 10px solid red;
}
The CSS code above will make a red border around the link, and remove the underline.
+ 1
Try:
html:
<a class="link_bordered">Test</a>
css:
a.link_bordered{
border: 1 px solid black;
border-radius: 10%; //round corners
padding: 10 px;
margin: 5 px;
text-decoration: none; //remove underline
color: white
background-color: blue
}