Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > HTML > tiling background images

Reply
Thread Tools

tiling background images

 
 
Dave Kelly
Guest
Posts: n/a
 
      03-23-2008
I would like to thank the person that wrote these wonderful examples
at this website: http://www.pmob.co.uk/temp/3colfixedtest_explained.htm.
After a while I finally found a name. So, Paul O'Brien Tommy Olssen,
thank you.

Look here www.texasflyfishers.org/index.3.html for source code. I
realize there is a lot to be corrected to bring this code upto snuff.
So please do not chide me for all the deprecated tags and errors. If I
can not make what the code below implies, then there is no need for me
to go through the trouble.

#wrapper {
background:#fff url(blue-white.png) repeat-y left top;
background:#fff url(white-blue.png) repeat-y right top;
}
 
Reply With Quote
 
 
 
 
Jonathan N. Little
Guest
Posts: n/a
 
      03-23-2008
Dave Kelly wrote:

> #wrapper {
> background:#fff url(blue-white.png) repeat-y left top;
> background:#fff url(white-blue.png) repeat-y right top;
> }


This does not tile the image down the left and right side. A present an
element can have only one background image, CSS3 does but no present
browser implements that nebulous proposal AFAIK.

What you rule does is define it one why way then "overwrites" the rule
the other way. You would have to double wrap.

#outer {
margin: 0; padding: 0;
background: #fff url(blue-white.png) repeat-y left top;
}
#inner{
margin: 0; padding: 1em;
background: transparent url(blue-white.png) repeat-y right top;
}

<div id="outer"><div id="inner">Your content ...</div></div>

--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Tiling of background image. Shelly HTML 7 12-04-2007 08:57 PM
Fluid container with tiling background Nik Coughlin HTML 9 11-28-2007 06:56 PM
stretching the background image instead of tiling =?Utf-8?B?U3JpZGhhcg==?= ASP .Net 3 11-30-2005 11:32 AM
Printable tiling - Not tiling on screen needed. SS4 Computer Support 7 12-23-2003 03:05 AM
Re: Repeating a tiling image in a table cell Anders Thorsen Holm HTML 0 07-15-2003 08:22 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57