|
Posted by Chris F.A. Johnson on 08/07/06 22:04
On 2006-08-07, AF wrote:
> On Mon, 7 Aug 2006 21:57:50 +0100, Andy Mabbett
><usenet200309@pigsonthewing.org.uk> wrote:
>
>>In message <vfhcd2l6n04mkr0hv6tduq8ut6ht5r6a5b@4ax.com>, AF
>><bscinc@Yahoo_NoSpam.com> writes
>>
>>[of a series of links]
>>
>>>It is not a list.
>>
>
> Excuse me for not being more precise.
>
> I meant to say, "I do not want to use the <li> code for this group of
> items."
>
> Specifically, what I want my data to look like is,
>
> item 1, item 2, item 3, item 4,
>
> Someone misread what I wrote and thought that I was looking for a
> formated list like
>
> item 1
> item 2
> item 3
> item 4
CSS can present a list that way, too:
ul {
list-style-type: none;
}
li {
display: inline;
}
--
Chris F.A. Johnson <http://cfaj.freeshell.org>
===================================================================
Author:
Shell Scripting Recipes: A Problem-Solution Approach (2005, Apress)
[Back to original message]
|