Skip to main content

Popularity Report

Total Popularity Score: 0

Loading...
Loading...
Loading...
Loading...
Loading...
Loading...

Rank

Groups (1)

  • web-design-sum08

    Web Design CSS Bookmarking List Summer 2008

    14 members,94 bookmarks

    Students in Bill Wolff's course, Web Design, share CSS and Photoshop tips, tricks, and hacks. Four commented bookmarkes required per week per student.

Related Lists

Bookmark History

Saved by 8 people (1 private), first by anonymouse user on 2006-06-24


Public Comment

on 2006-06-24 by emillipede

CSS Start point first page css how to external style sheet setup css syntax

Public Sticky notes

ternal Style Sheet

Highlighted by emillipede

hr {color: sienna} p {margin-left: 20px} body {background-image: url("images/back40.gif")}

Highlighted by emillipede

<head> <link rel="stylesheet" type="text/css" href="http://www.w3schools.com/mystyle.css" /> </head>

Highlighted by swanlin128

<head> <style type="text/css"> hr {color: sienna} p {margin-left: 20px} body {background-image: url("images/back40.gif")} </style> </head>

Highlighted by swanlin128

An inline style loses many of the advantages of style sheets by mixing content with presentation

Highlighted by swanlin128

An inline style loses many of the advantages of style sheets by mixing content with presentation. Use this method sparingly, such as when a style is to be applied to a single occurrence of an element.

Highlighted by alfredwesterveld

To use inline styles you use the style attribute in the relevant tag.

Highlighted by swanlin128