Inline CSS, hover property -- possible?
Posted: Tue Nov 01, 2005 7:01 am
Hey,
Anyone happen to know if I you can do this inline?
Something like this but with that hover property also:
Thanks
Anyone happen to know if I you can do this inline?
Code: Select all
<style type="text/css" media="screen">
a.foo { color: red; text-decoration: none; }
a.foo:hover { color: green; }
</style>
<a class="foo" href="somewhere_nice">Never call a link "Click Me!"</a>Code: Select all
<a style="color: red; text-decoration: none;" href="somewhere_nice">Never call a link "Click Me!"</a>Thanks