1 / 4

Learning Report Styling Links

Learning Report Styling Links. Mark Purcell. Purpose. Links are something that will be all over your website. They are the basis of everything you see online . The default browser setting makes all unvisited links blue, visited links purple, and active links red .

milton
Télécharger la présentation

Learning Report Styling Links

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Learning Report Styling Links Mark Purcell

  2. Purpose • Links are something that will be all over your website. They are the basis of everything you see online. • The default browser setting makes all unvisited links blue, visited links purple, and active links red. • These settings can be changed using code in your CSS page.

  3. Implementation • In your CSS sheet use the a selector to style links. • You can change each status of the link by using the a:link, a:visited, a:hover, and a:active selectors. • You must order these links in the order listed above. • You can change each selector with various properties.

  4. Example a {fontweight: bold;}a:link{color: black;}a:visited {color:gray;}a:hover {text-decoration: none;color: white;backround-color: navy;}a:active {color: aqua;backround-color: navy;}

More Related