+ 1
Border around links
Hi all, I have been working through the html challenges here and on the blog project, I have included links at the top that take you to different parts. How can I add borders to Just those links without it adding a border to all the rest? Would it be easier to just make it a horizontal list and go from there? Sorry if this doesn't make sense. https://code.sololearn.com/WkkCAf227z6S/?ref=app
3 Respuestas
+ 4
if you want for all links
A{
border:1px solid grey;
}
if you want for just some links
give them one class and make the properity in css
+ 3
welcome 😊
+ 2
Thanks it worked with a trial run so will implement it later.