HighDots Forums  

CSSS & Javascript

Javascript JavaScript language (comp.lang.javascript)


Discuss CSSS & Javascript in the Javascript forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
decibel
 
Posts: n/a

Default CSSS & Javascript - 01-05-2004 , 09:57 AM






I have a script which works out the browser window heigh, minus the height
of an image, and divides by 2. This is so that I can vertically align an
image, centrally. The only problem is I have no clue how to set the 'top:'
value to be the same as this value. Is there any way to assign a JavaScript
value to the corrsesponding CSS property value? If not is there any other
way around this problem?

Brion



Reply With Quote
  #2  
Old   
Martin Honnen
 
Posts: n/a

Default Re: CSSS & Javascript - 01-05-2004 , 10:16 AM








decibel wrote:

Quote:
I have a script which works out the browser window heigh, minus the height
of an image, and divides by 2. This is so that I can vertically align an
image, centrally. The only problem is I have no clue how to set the 'top:'
value to be the same as this value. Is there any way to assign a JavaScript
value to the corrsesponding CSS property value? If not is there any other
way around this problem?
var img = document.images['imageName'];
if (img && img.style) {
img.style.top = '200px';
}
--

Martin Honnen
http://JavaScript.FAQTs.com/



Reply With Quote
  #3  
Old   
Thomas 'PointedEars' Lahn
 
Posts: n/a

Default Re: CSSS & Javascript - 01-14-2004 , 02:01 AM



decibel wrote:

Quote:
I have a script which works out the browser window heigh,
minus the height of an image, and divides by 2.
What about toolbars?

Quote:
This is so that I can vertically align an image, centrally.
You do not need JavaScript for that, CSS2 is enough and that is
is supported and enabled is more likely than that script support
is supported and enabled to the necessary extent.


PointedEars


Reply With Quote
Reply




Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.