Posted by Amos E Wolfe on 02/26/07 10:49
"Bob" <Go1369@Yahoo.Com> wrote in message
news:1172483337.761977.315790@v33g2000cwv.googlegroups.com...
>I have a number of items that I'm listing row by row...these items
> always have a short description but some of them have a long
> description as well....something like this
>
> Apples
> These are the finest apples from Washington State.
>
> As you can see.....the long description is indented about 4 ( )
> non breaking spaces.
>
> All is well UNLESS my long description goes onto the next row...then
> it looks like this
>
> Apples
> These are the finest apples from Wshington State and were picked by
> virgins wearing gloves made of virgin wool.
>
> As you can see..the second row of the long description does not
> indent...and looks lousy...
>
> I know I can use a small width TD and leave it blank....that would be
> one work around.....
>
> ...does anyone have a good solution to this problem?
>
You could use a nested unordered list like this:
<ul>
<li>Apples
<ul>
<li>These are the finest apples from Washington State and were picked
by virgins wearing gloves made of virgin wool.
</ul>
</ul>
and stick this in your css
ul
{
list-style-type: none
}
--
-=# Amos E Wolfe #=-
AIM: Traindriver9334
Get Firefox: http://www.spreadfirefox.com/?q=user/register&r=122394
[Back to original message]
|