css | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

css

how i can make border for liknks ?

28th Jul 2017, 1:09 PM
Andriman Farahany
Andriman Farahany - avatar
3 Answers
+ 1
for graphic works and i don t now how too work but i will learn and say
28th Jul 2017, 1:12 PM
Aref Bayat
Aref Bayat - avatar
+ 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.
28th Jul 2017, 1:32 PM
Saka Oluwadamilola
Saka Oluwadamilola - avatar
+ 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 }
28th Jul 2017, 1:45 PM
Jan Moriaux
Jan Moriaux - avatar