Return to Styling Links with CSS
Hold your mouse over this link to see it change color: change hover color
a:hover { color: #0f0; }Return to Styling Links with CSS
Click and hold your mouse on this link to see the active color: change active color
a:active { color: #f00; }Return to Styling Links with CSS
Click on this link, then return to this page and reload and it should change from blue to pink. If you've already been to this page, it will be pink right now: change visited color
a:visited { color: #f0f; }Return to Styling Links with CSS
This link will have a hover, active, and visited link color set on it: change all of them
a:link { color: #00f; }Return to Styling Links with CSS
a:hover { color: #0f0; }
a:active { color: #f00; }
a:visited { color: #f0f; }
This link will have an icon beside it: link with an icon
a {Return to Styling Links with CSS
padding: 0 2px 1px 15px;
background: #fff url(ball.gif) left center no-repeat;
color: #c00;
}
Hover over the link and activate the link to see the bullet icon change: hover and active icon
a { padding: 0 2px 1px 15px; color: #c00; }Return to Styling Links with CSS
a:link { background: #fff url(ball.gif) left center no-repeat; }
a:hover { background: #fff url(ball2.gif) left center no-repeat; }
a:active { background: #fff url(ball3.gif) left center no-repeat; }
button 1
a {Return to Styling Links with CSS
border: 4px outset;
padding: 2px;
text-decoration: none;
}
button 2
a {Return to Styling Links with CSS
border-style: solid;
border-width : 1px 4px 4px 1px;
text-decoration : none;
padding : 4px;
border-color : #69f #00f #00f #69f;
}
button 3
a:link {Return to Styling Links with CSS
border-style: solid;
border-width : 1px 4px 4px 1px;
text-decoration : none;
padding : 4px;
border-color : #69f #00f #00f #69f;
}
a:hover { border-color: #ccc; }
View the original article here
No comments:
Post a Comment