Sunday, January 20, 2019

Essential WebMastery Skills

A link like this. Ain't that something? Make your web page pop out and get attention. If you want the link to be underlined when the user's mouse is over it, use text-decoration:underline in :hover pseudostyle.

<style type="text/css">
   .tlink {
    text-decoration:none;
   }

   .tlink:hover {
    background-color:yellow;
    font-size:120%;
   }

</style>

<a class="tlink" href="#bot">visible text here</a>

No comments: