CSS How to
Popularity Report
![]() |
|||
![]() |
|||
![]() |
|||
![]() |
|||
![]() |
|||
![]() |
URL Tag Cloud
Groups (1)
-
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.
Bookmark History
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


Public Comment
on 2006-06-24 by emillipede