Orange Gold
01-05-2011, 06:43 AM
I have a button (in html) and I want the center of the button to be on the center of the line I'm typing on... I was just putting it inside a span and then using this code to move it down.
<span style="position:relative; bottom:-10;">
It worked great!
But... once I started allowing my users to change the font sizes the buttons got bigger and they needed to be moved down further...
if the font size was +1:
<font size="+1"><span style="position:relative; bottom:-10;">
if the font size was +6:
<font size="+6"><span style="position:relative; bottom:-27.5;">
So is there a way in javascript to detect the current font size and then adjust the span position based off of that?
If I can just get the number of the current font size I can do all the rest of the coding, I just need a way to figure out the current font size and put it in a variable... I was thinking of using something like 1.0em so that it stays the same but then we have a basis of measuring off of but I have no clue.. I'm fairly new to javascript.
Thanks!
<span style="position:relative; bottom:-10;">
It worked great!
But... once I started allowing my users to change the font sizes the buttons got bigger and they needed to be moved down further...
if the font size was +1:
<font size="+1"><span style="position:relative; bottom:-10;">
if the font size was +6:
<font size="+6"><span style="position:relative; bottom:-27.5;">
So is there a way in javascript to detect the current font size and then adjust the span position based off of that?
If I can just get the number of the current font size I can do all the rest of the coding, I just need a way to figure out the current font size and put it in a variable... I was thinking of using something like 1.0em so that it stays the same but then we have a basis of measuring off of but I have no clue.. I'm fairly new to javascript.
Thanks!