View Single Post
Old 12-13-2007, 12:49 AM  
darnit
Confirmed User
 
Join Date: Jul 2001
Location: Teh Interweb
Posts: 2,439
Quote:
Originally Posted by justFred View Post
though if you need more than just the styling you'll want to put the style information in the header such as:

<head>

<style type="text/css">
body
{
background-image: url('i don't want this image to tile.jpg');
background-repeat: no-repeat
font-family: some font
color: some color
whatever: other CSS
}
</style>

</head>

and your code will be more readable and save you time.
Good idea to use css however here it is corrected.

<style type="text/css">
body
{
background-image: url('i don't want this image to tile.jpg');
background-repeat: no-repeat;
font-family: some font;
color: some color;
whatever: other CSS;
}
</style>

You need the ";" after each style classification.
darnit is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote