joonstar
08-14-2005, 12:31 AM
<style>
a:link {text-decoration:none; font-size:13px; font-weight:100; color:9595ff}
a:visited {text-decoration:none; font-size:13px; font-weight:100; color:black}
a:hover {text-decoration:underline; color:ff0000}
a.blue_box{
display:inline-block;
background-color:00ccff;
border: 1px solid 000000;
color:white;
}
</style>
<a href='test.html' class='blue_box'>test</a>
I designated the color of test in the blue box link white.
But after I once click the link, it becomes black.
How can I keep it white without changing of visited color "black" although it is clicked?
a:link {text-decoration:none; font-size:13px; font-weight:100; color:9595ff}
a:visited {text-decoration:none; font-size:13px; font-weight:100; color:black}
a:hover {text-decoration:underline; color:ff0000}
a.blue_box{
display:inline-block;
background-color:00ccff;
border: 1px solid 000000;
color:white;
}
</style>
<a href='test.html' class='blue_box'>test</a>
I designated the color of test in the blue box link white.
But after I once click the link, it becomes black.
How can I keep it white without changing of visited color "black" although it is clicked?