Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Javascript (http://www.velocityreviews.com/forums/f68-javascript.html)
-   -   Dynamic width of absolute positioned element (http://www.velocityreviews.com/forums/t879244-dynamic-width-of-absolute-positioned-element.html)

mike eli 09-01-2004 04:30 PM

Dynamic width of absolute positioned element
 
Hi,

I have several absolute positioned elements inside an absolute
positioned DIV.
I would like one of the nested elements to have a dynamic width. I set
it's left and right attributes to 5, so the the element should have a
width = parentWidth - 10; This is the desired behaviour, but it won't
work. I still have to specify a width or the element has a width of 0.
Setting the width to '100%' doesn't give me the desired effect; it
takes the width of the parent element. Can anybody help me? thanks.

ex.

<div style="position:absolute; left:20px; top:20px; width:200px;
height:200px; border:solid black 1px">
<div style="position:absolute; left:5px; top:0px; right:5px;
background-color:blue"></div>
</div>

noone 09-02-2004 08:25 AM

Re: Dynamic width of absolute positioned element
 

"mike eli" <michaelelias88@hotmail.com> skrev i en meddelelse
news:5954e2a4.0409010830.75f76073@posting.google.c om...
> Hi,
>
> I have several absolute positioned elements inside an absolute
> positioned DIV.
> I would like one of the nested elements to have a dynamic width. I set
> it's left and right attributes to 5, so the the element should have a
> width = parentWidth - 10; This is the desired behaviour, but it won't
> work. I still have to specify a width or the element has a width of 0.
> Setting the width to '100%' doesn't give me the desired effect; it
> takes the width of the parent element. Can anybody help me? thanks.
>
> ex.
>
> <div style="position:absolute; left:20px; top:20px; width:200px;
> height:200px; border:solid black 1px">
> <div style="position:absolute; left:5px; top:0px; right:5px;
> background-color:blue"></div>
> </div>


Hi Mike

Absolute positioning means absolute and not relative.
If you position som element with absolute positioning, the element
absolutely doesn't care about its parents position.
You need relative to do that.
And if your "left" is 5 and your "right" is 5, then of course your width
becomes 0, because you are setting the margins of the element.
So both your lft and right margins are 5, not much space in between there.
Go to www.w3schools.com and learn some more about html

happy coding
Robert



Michael Winter 09-02-2004 09:22 AM

Re: Dynamic width of absolute positioned element
 
On Thu, 2 Sep 2004 10:25:14 +0200, noone <1@2.3> wrote:

[snip]

> Absolute positioning means absolute and not relative.
> If you position som element with absolute positioning, the element
> absolutely doesn't care about its parents position.


Actually, if you read the specification a little more closely, you'll see
that that isn't true.

An absolutely positioned block is "explicitly offset with respect to its
containing block" (9.6 - Absolute positioning). A relatively positioned
block is "laid out according to the normal flow" and "may be shifted
relative to this position" (9.4.3 - Relative positioning").

If you add content to the inner DIV in the OP's example, you'll see that
Opera and Mozilla display the elements as intended. IE, being crap as
usual, doesn't and I doubt it will without some kind of hack (CSS or
Javascript).

In any case, the first place to take this is to the stylesheet group:

comp.infosystems.www.authoring.stylesheets

If they can't find a solution, then perhaps a script solution is warranted.

[snip]

Mike

--
Michael Winter
Replace ".invalid" with ".uk" to reply by e-mail.

DU 09-02-2004 10:54 PM

Re: Dynamic width of absolute positioned element
 
mike eli wrote:

> Hi,
>
> I have several absolute positioned elements inside an absolute
> positioned DIV.
> I would like one of the nested elements to have a dynamic width. I set
> it's left and right attributes to 5, so the the element should have a
> width = parentWidth - 10; This is the desired behaviour, but it won't
> work. I still have to specify a width or the element has a width of 0.
> Setting the width to '100%' doesn't give me the desired effect; it
> takes the width of the parent element. Can anybody help me? thanks.
>
> ex.
>
> <div style="position:absolute; left:20px; top:20px; width:200px;
> height:200px; border:solid black 1px">
> <div style="position:absolute; left:5px; top:0px; right:5px;
> background-color:blue"></div>
> </div>


Setting simultaneously left and right absolute values to the inner div
does not make sense.

Better:

<div style="position:absolute; left:20px; top:20px; width:200px;
height:200px; border:solid black 1px">
<div style="position:absolute; left:5px; top:0px; width: 190px;
background-color:blue;"></div>
</div>

or

<div style="position:absolute; left:20px; top:20px; width:200px;
height:200px; border:solid black 1px">
<div style="position:absolute; left:2%; top:0px; width: 96%;
background-color:blue;"></div>
</div>

and here, MSIE 6 must be triggering standards compliant rendering mode
in order to render accordingly.

DU
--
The site said to use Internet Explorer 5 or better... so I switched to
Netscape 7.2 :)


All times are GMT. The time now is 01:31 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


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