Wie man Links in CSS nicht unterstreicht
a {
text-decoration: none;
}
Plain Piranha
a {
text-decoration: none;
}
a {
text-decoration: none;
}
body {
color: blue;
}
a {
color: inherit; /* blue colors for links too */
text-decoration: inherit; /* no underline */
}
/*like suppose I take a tag of html*/
a{
decoration:none;
}