Search
 
SCRIPT & CODE EXAMPLE
 

CSS

how to remove link blue color from a tag using css

a, a:hover, a:focus, a:active {
      text-decoration: none;
      color: inherit;
}
Comment

how to remove link color from

/* its a style option */
a {
	text-decoration: none; /* remove underline */
	color: inherit; /* remove blue */
}
Comment

PREVIOUS NEXT
Code Example
Css :: tachar texto css 
Css :: input autocomplete css color 
Css :: css centrar imagen 
Css :: how rotate infinity css 
Css :: place item center in css using grid 
Css :: select text-align center 
Css :: alternatives to display none 
Css :: how to align a content at the middle of a div with translate 
Css :: use font awesome as content in css 
Css :: half circle css 
Css :: color code for pink 
Css :: css remove blue outline button 
Css :: css if screen size less than 
Css :: center with css 
Css :: css hide scroll 
Css :: rounded input css 
Css :: css beutify scroller 
Css :: tailwindcss init full 
Css :: ignore cache pip 
Css :: twig ternaire 
Css :: responsive media qurries 
Css :: css height animation 
Css :: centrer un élément absolute 
Css :: display flex column width auto 
Css :: jquery .css multiple 
Css :: css animate background image 
Css :: posicionar div centro da tela 
Css :: bold in label html 
Css :: align button to bottom of div 
Css :: css center vertically 
ADD CONTENT
Topic
Content
Source link
Name
7+4 =