Nick Mavros wrote:

> <h1>Title <a>subtitle</a></h1>
> 
> I want the Title to be left aligned and the <a>subtitle</a> to right 
> aligned. But I want them to be in the same line.

h1 a {
display: block;
width: 100%;
text-align: right;
margin-top: -1.3em /* make value equal to line-height */;
}

h1 {height: 1%;}

...will give you the line-up you want. It will however produce a wide
link in most browsers, and IE6 may need some extra "help" to make the
link work as intended.

regards
        Georg
-- 
http://www.gunlaug.no
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to