- Forums
- HTML
- Make Css Links All Same Making Link In Css Behave The Same
This Page Contains information about Make Css Links All Same Making Link In Css Behave The Same By wallpaperama in category HTML with 0 Replies. [715], Last Updated: Sat May 18, 2024
wallpaperama
Sun Mar 02, 2008
0 Comments
716 Visits
to make css links you can use this example:
<style type="text/css">
<!--
a:link, a:visited, a:active {
text-decoration: underline;
}
-->
</style>
here is one with a named customed
a.site_url, a.site_url:active, a.site_url:link, a.site_url:visited {
text-transform: uppercase;
font-weight: bold;
text-decoration: none;
padding: 5px 10px;
color: #990000;
}