On Nov 4, 2005, at 10:27 AM, Adriano Castro wrote: > Hi, > > I want to have, aligned to the left, a title followed by a > sub-title. Then, on the same line as the sub-title, I want to have, > aligned to the right, a date. Lastly on the next line, also aligned to > the right a link. > > Something under these lines: > > Title > Subtitle date > link
You might want to look into styling a definition list. Some links that may (or may not) help: http://www.scottmcdaniel.com/?p=33 http://aerie.chirp.com.au/css/format-dl/ http://archivist.incutio.com/viewlist/css-discuss/21106 Using styling from example #2 via second link found above, what I might try is: <dl> <dt>Title<br />Subtitle</dt> <dd>Date<br />Link</dd> <dt>Title<br />Subtitle</dt> <dd>Date<br />Link</dd> <dt>Title<br />Subtitle</dt> <dd>Date<br />Link</dd> <dt>Title<br />Subtitle</dt> <dd>Date<br />Link</dd> </dl> Above not tested, but I think if styled right, you would achieve the results you are looking for. M -- BCC for Privacy! http://www.cs.rutgers.edu/~watrous/bcc-for-privacy.html ---------------------------------- My del.icio.us: http://del.icio.us/mhulse ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
