Search
 
SCRIPT & CODE EXAMPLE
 

CSS

how to change hyperlink color in css

a {
  background-color: red;
  color: white;
  padding: 1em 1.5em;
  text-decoration: none;
  text-transform: uppercase;
}
Comment

css change link color in class

a.register:link { color:#FFF; text-decoration:none; font-weight:normal; }
a.register:visited { color: #FFF; text-decoration:none; font-weight:normal; }
a.register:hover { color: #FFF; text-decoration:underline; font-weight:normal; }
a.register:active { color: #FFF; text-decoration:none; font-weight:normal; }
Comment

how to change color of hyperlink in css

a {
  background-color: red;
  color: white;
  padding: 1em 1.5em;
  text-decoration: none;
  text-transform: uppercase;
Comment

div class link color

.register a:link{
    color:#FFFFFF;
}
Comment

PREVIOUS NEXT
Code Example
Css :: multiple divs next to each other 
Css :: delected blue border when an input is selected 
Css :: box shadow css property 
Css :: css get the image to the center and to make it relative to the width of the parent. 
Css :: text gradient effect 
Css :: css input radio checked 
Css :: download s3 bucket files on l local 
Css :: bootstrap create full screen background image 
Css :: word break css 
Css :: call circle icon in html css 
Css :: edit css jquery 
Css :: bootstrap breakpoints 
Css :: background image with color overlay gradient css 
Css :: Pack lines toward the center of the flex container 
Css :: Align vertically and horizontally 
Css :: use css to replace icon with text when hover 
Css :: circle css w3schools 
Css :: bootstrap cheat sheet 
Css :: linear gradient border 
Css :: how to put mulitple conditions in media query 
Css :: how to write css in html 
Css :: drawing a circle with css 
Css :: collapse border css 
Css :: changing bakcgound color like animation using tailwind 
Css :: backgorund color transitition css 
Css :: no outline css 
Css :: gravity forms css classes 
Css :: padding css 
Css :: scss generate random color 
Css :: css remove whitespace around element 
ADD CONTENT
Topic
Content
Source link
Name
3+8 =