Ann Adamcik wrote:
> One more...
>
> I have a css button that I would like to have bottom aligned
> with the text that it sits next to. Currently, the background
> box sits below the text line and I can't seem to nudge it
> upwards. Any ideas on lining it up properly?
>
> See the 'go' button toward the bottom of this page:
> http://procarta.com/beta2/story.php
> The css is here: http://procarta.com/beta2/css/text_styles.css


Since you're working with pixels:
.go {
margin-left: 10px;
position:relative;
top:-7px;
}

You may want to reconsider font-sizes in pixels though. It leaves 
IE5/6 users without options to resize the text in their browsers.

-- 
Els
http://locusmeus.com/
http://locusoptimus.com/

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to