|
CSS Tricks
Text Links With Lines Above And Below:
Here is the CSS code to mouseover and put lines above and below text links. Place this CSS code between the <head> and </head> tags.
<style type="text/css">
<!--
A:hover { text-decoration: overline underline }
-->
</style>
|