Topic: Streach that Background? |
|
---|---|
Author | Thread |
Maniac (V) Mad Scientist From: 127 Halcyon Road, Marenia, Atlantis |
posted 08-06-2005 20:39
I looked up all the definitions- but I can't find this being possible. |
Paranoid (IV) Inmate From: France |
posted 08-06-2005 20:57
With CSS 2.1 you don't. |
Maniac (V) Mad Scientist From: 127 Halcyon Road, Marenia, Atlantis |
posted 08-06-2005 21:03
yeah, everything I'm digging up is saying that it can't be done.. I *hate* roadblocks like that... |
Maniac (V) Inmate From: under the bed |
posted 08-06-2005 21:09
That gets a little complicated with positioning - you'd have to use absolute positioning to set another div at the same place as the one with the image, and use z-index to set the stacking order. |
Paranoid (IV) Inmate From: Florida |
posted 08-06-2005 21:24
Depends on the image, of course, but usually stretching isn't too bad on quality - what it is bad on is website speed...all that rendering exercise slows down the browser. |
Maniac (V) Mad Scientist From: 127 Halcyon Road, Marenia, Atlantis |
posted 08-07-2005 13:37
well, I have a scan-lined gradient that's width:100% with some text on the left side. |
Paranoid (IV) Inmate From: Florida |
posted 08-07-2005 16:06
Something like this?: |
Maniac (V) Mad Scientist From: 127 Halcyon Road, Marenia, Atlantis |
posted 08-07-2005 16:57
Yeah, but see- |
Paranoid (IV) Inmate From: Florida |
posted 08-07-2005 17:11
"the layer to the north"? |
Maniac (V) Mad Scientist From: 127 Halcyon Road, Marenia, Atlantis |
posted 08-07-2005 17:17
yeah, I just don't want to confuse it with (the layer I want over the gradient). By 'the level to the north' I mean (the layer closer to the top of the screen; the one with the same z-index as the gradient) |
Paranoid (IV) Inmate From: Florida |
posted 08-07-2005 17:26
Not understanding you at all. |
Maniac (V) Mad Scientist From: 127 Halcyon Road, Marenia, Atlantis |
posted 08-07-2005 18:52
This sound like a job for ASCII!! code: -----[top of browser]--------- | 1 -------------- | 2 Gradient -------------- | 3 --------------
|
Paranoid (IV) Inmate From: Florida |
posted 08-07-2005 21:59
Okay, so you'll be using the default scrollbar over to the right? |
Paranoid (IV) Inmate From: Madison, Indiana, USA |
posted 08-08-2005 19:07 |
Paranoid (IV) Inmate From: France |
posted 08-08-2005 19:16 |
Maniac (V) Mad Scientist From: 127 Halcyon Road, Marenia, Atlantis |
posted 08-08-2005 20:12
The gradient goes from 'white to black' from the left side of the screen to the right side of the screen with a bit of bluish tint. |
Paranoid (IV) Inmate From: Florida |
posted 08-08-2005 21:13
I get the distinct feeling you're talking in Dreamweaver lingo. |
Maniac (V) Inmate From: under the bed |
posted 08-08-2005 21:35
Can you show us an example here? The more you explain, the more confusing it becomes. |
Neurotic (0) Inmate Newly admitted From: |
posted 08-20-2005 04:15
Hi, code: <html> <head> </head> <body style="margin: 0px; padding: 0px;"> <div style="width: 100%; height: 100%; left: 0px; top: 0px; position: absolute; z-index: 0;"> <img src="animage.jpg" style="width: 100%; height: 100%;"> </div> <div style="z-index: 1; position: absolute;"> The actual page... :D </div> </body> </html>
code: <div id='div1' style='width: 50em; margin: 0 0 1em 0;'> <div id='background1' style="width: 100%; height: 100%; z-index: 0;"> <img id='img1' src='whatever.gif' style='width: 100%; height: 100%;' /> </div> <div id='text1' style='z-index: 1; width: 100%;''> - this text in text1 should appear ontop of the background image background1 - the parent div id=div1 should only be as tall as necessary to contain all this text, however tall it takes, - whatever.gif should be stretched to the right heigth and width to fill up div1. </div> </div> <div id='div2' style='width: 50em; margin: 0 0 1em 0;'> <div id='background2' style="width: 100%; height: 100%; z-index: 0;"> <img id='img2' src='whatever.gif' style='width: 100%; height: 100%;' /> </div> <div id='text2' style='z-index: 1; width: 100%;''> - this text in text2 should appear ontop of the background image background2 - the parent div id=div2 should only be as tall as necessary to contain all this text, however tall it takes, - whatever.gif should be stretched to the right heigth and width to fill up div2. </div> </div>
code: <div id='div1' style='width: 50em; margin: 0 0 1em 0;'> <div id='text1' style='z-index: 1; width: 100%;''> - this text in text1 should appear ontop of the background image background1 - the parent div id=div1 should only be as tall as necessary to contain all this text, however tall it takes, - whatever.gif should be stretched to the right heigth and width to fill up div1. </div> <div id='background1' style="z-index: 0;"> <img id='img1' src='whatever.gif' style='width: 100%; height: 100%;' onLoad='resizeMe(this,"div1");' /> </div> </div>
|