+ 4
How can someone create a clickable button without it being underlined with nice background?
I created one; -The text was underlined -blue background does not work with white text Please help me solve these 2problems l'm still a beginner https://code.sololearn.com/WHG4j5qqdC03/?ref=app
5 Réponses
+ 3
button{
background-color: blue;
font-size: 30px;
border-radius: 10px;
}
a{
color: white;
text-decoration: none;
}
+ 6
Mohamadou Dahirou ,
To remove underline you can use text-decoration property.
By default anchor will have underline.
a{
text-decoration:none;
}
+ 5
Please who can help me with this one
+ 5
Big thanks to all
+ 1
What you try to do? How the button should look? Blue bg and white text?