Hey PHP'ers,
In IE worden de normale links dus <a href="#">test</a> onderstreept weergeven.
Hoe krijg ik dit normaal weergegeven?
Ik dacht met css.
504 views
a:link, a:visited {
text-decoration: none;
color: red;
}
a:hover, a:active {
text-decoration: underline;
color: blue;
}