Answers for "can i remove an href with css?"

CSS
0

remove basic html style link

a {
  color: blue;
  text-decoration: none; /* no underline */
}
Posted by: Guest on January-08-2021
0

remove basic html style link

body {
  color: blue;
}
a {
  color: inherit; /* blue colors for links too */
  text-decoration: inherit; /* no underline */
}
Posted by: Guest on January-08-2021

Browse Popular Code Answers by Language