| Artikkel-oversikt | |
| Scripts og tips hos Winfolinx.com | ||
| Webhotell |
| CSS: | ... og sånn blir det: |
|
<html><head> <style type="text/css"> a:link {color: #FF0000} a:visited {color: #00FF00} a:hover {color: #FF00FF} a:active {color: #0000FF} </style> </head><body> <p><b><a href="ingen.asp" target="_blank">Dette er linken. Test den ut!</a></b></p> </body></html> |
|
NB: "a:hover" MÅ komme ETTER "a:link" og "a:visited" i CSS-definisjonen for å fungere!! NB: "a:active" MÅ komme ETTER "a:hover" i CSS-definisjonen for å fungere!! |
|
|