Search
 
SCRIPT & CODE EXAMPLE
 

CSS

link css html

<link rel="stylesheet" href="style.css">
Comment

css link

<link href="main.css" rel="stylesheet">
Comment

css a link style

a:link { /* unvisited link */ color: #000; text-decoration: none; border: none; }
a:visited { /* visited link */ color: #000; }
a:hover { /* mouse over link */ color: #000; border: none; }
a:active { /* active link */ color: #000; }
Comment

CSS Links

/* unvisited link */
a:link {
  color: red;
}

/* visited link */
a:visited {
  color: green;
}

/* mouse over link */
a:hover {
  color: hotpink;
}

/* selected link */
a:active {
  color: blue;
}
Comment

how to style links in css

a.four:link {color:#ff0000;}
a.four:visited {color:#0000ff;}
a.four:hover {font-family:monospace;}
Comment

PREVIOUS NEXT
Code Example
Css :: css trim text 
Css :: css glow effect 
Css :: set border color of svg 
Css :: How to check tailwindcss version 
Css :: how to center div in css 
Css :: bootstrap 4 classes list with description pdf 
Css :: css center in grid 
Css :: tailwind border bottom 
Css :: scss not working with storybook 
Css :: align center img css inside div 
Css :: css element top layer 
Css :: ratio bootstrap 
Css :: the other div inline-block is in bottom 
Css :: css mobile friendly 
Css :: keeping elements of container in center 
Css :: how to center a div vertically and horizontally 
Css :: pointer-events 
Css :: centering css elements 
Css :: active pseudo class in css not working in form text area 
Css :: how to add background image in styled components 
Css :: scss install 
Css :: how to remove horizontal scrolling 
Css :: null vs void 
Css :: bash access array indirectly 
Css :: change br height 
Css :: hide li bullet css bootstrap 5 
Css :: how to scale down background image in css 
Css :: centering with flexbox 
Css :: css not clickable 
Css :: ::after cant see 
ADD CONTENT
Topic
Content
Source link
Name
7+1 =