On 13/01/06, Vic Rauch <[EMAIL PROTECTED]> wrote:
> I have a listing of seminars that are happening on 3 different days and
> would like to list these with the seminar time right justified, then the
> seminar title and description left justified just to the right of the
> seminar time:

>          9:00AM -- "Seminar Title" presented by Geo Green and
>                    his host of illustrations.
>
>         10:00AM -- "Second Seminar" given by Bob Brown along
>                    with his helpers

The first thing to do is to get the markup right ...

<table>
  <thead>
    <tr>
      <th scope="col">Time</th>
      <th scope="col">Seminars</th>
    </tr>
  </thead>
  <tbody>
   etc..

Then a text-align: right on the first cell in each row, and you're
pretty much there.
--
David Dorward <http://dorward.me.uk><http://blog.dorward.me.uk>
______________________________________________________________________
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/

Reply via email to