View Full Version : Background Image "Tiled"


Brown_Eyed_Girl
06-06-2003, 12:41 AM
Hey..I've got a question about backgrounds. Say you have an image that doesn't take up an entire computer screen. I want the image to show up all over the background in its regular size, just a bunch of copies of the picture over and over..do you know what I mean? Like if you go to wallpaper on your desktop and put in an image and click tile, and it appears over and over. Is there an HTML tag for this? Thanks!

crazyjls7890
06-06-2003, 12:48 AM
Go here: http://www.lissaexplains.com/css.shtml
You can do all kinds of different things that you want to to the background image in your CSS code :)

Brown_Eyed_Girl
06-06-2003, 12:54 AM
k, thanks so much!!

Brown_Eyed_Girl
06-06-2003, 01:20 AM
Okay..one more question..it says you can link to an external CSS style sheet..how do you do that?

zangerbanger
06-06-2003, 02:42 AM
You save your entire css in a separate file with the filename .css. Then you put this code into the head section of every single page where you want your css applied:

<link rel="stylesheet" href="stylesheet.css">

Replace the bold type with whatever you named your .css file :) .

bellportal
06-06-2003, 11:54 AM
Can't you just set:

<body background="myimages.gif">

Doesn't this tile the image across the screen?