Flowing text across columns

Flowing text across columns

am 03.05.2007 09:47:39 von James Hutton

I've got a large number of names (373 in fact) currently in .txt ready
to cut and paste into a page. Is there any way to place these into two
or three columns which flow automatically, or is it easier to do a 2 / 3
column layout and just add portions of the group into the columns manually?

James

Re: Flowing text across columns

am 03.05.2007 09:58:56 von Ben C

On 2007-05-03, James Hutton wrote:
> I've got a large number of names (373 in fact) currently in .txt ready
> to cut and paste into a page. Is there any way to place these into two
> or three columns which flow automatically

No. CSS doesn't support columns in the sense of actually flowing text
through them.

> , or is it easier to do a 2 / 3
> column layout and just add portions of the group into the columns manually?

You will have to do something like that.

Re: Flowing text across columns

am 03.05.2007 11:38:54 von jkorpela

Scripsit James Hutton:

> I've got a large number of names (373 in fact) currently in .txt ready
> to cut and paste into a page.

But why would you do that? Is such a long list really useful to visitors?

> Is there any way to place these into two
> or three columns which flow automatically,

And why would you do _that_? You can, though, create a tabular-looking
presentation in a fairly simple way, but you need to use markup that makes
each name an element. I guess that would most logically be

Re: Flowing text across columns

am 03.05.2007 12:26:01 von Andy Dingley

On 3 May, 08:47, James Hutton
wrote:
> I've got a large number of names (373 in fact) currently in .txt ready
> to cut and paste into a page. Is there any way to place these into two
> or three columns which flow automatically,

No, HTML rendering doesn't grok newspaper columns.

This is deliberate though, so why fight it? Multiple narrow columns
(newspaper columns) are a feature of broadsheet newspaper printing,
where the best way to arrange scrolling is two-dimensionally. On the
web though, it's easy to scroll a long distance in one dimension, hard
to scroll sideways. So the "web way" of listing your long list is just
to keep it as a _single_ long list, not to break it into columns.

Re: Flowing text across columns

am 03.05.2007 19:37:57 von James Hutton

Jukka K. Korpela wrote:
> Scripsit James Hutton:
>
>> I've got a large number of names (373 in fact) currently in .txt ready
>> to cut and paste into a page.
>
> But why would you do that? Is such a long list really useful to visitors?

Well it's the roll of honour for ARA General Belgrano, so I'd like to
get all of them mentioned in one place.
>
>> Is there any way to place these into two
>> or three columns which flow automatically,
>
> And why would you do _that_? You can, though, create a tabular-looking
> presentation in a fairly simple way, but you need to use markup that
> makes each name an element. I guess that would most logically be

Re: Flowing text across columns

am 04.05.2007 00:38:23 von dorayme

In article ,
"Jukka K. Korpela" wrote:

> Scripsit James Hutton:
>
> > I've got a large number of names (373 in fact) currently in .txt ready
> > to cut and paste into a page.
>
> But why would you do that?
>

Surely there could be many good reasons. For example, a jailed
identity thief might want to list all his victims to boast about
his exploits or indeed, to make a public confession and apology.
Part of my business plan, for example, is to make websites for
convicts, taking on even the severest cases, ones that humans
cannot stomach. I also plan 'jilted-lover' and divorce websites
where infidelity is a big issue; the faithless partner sometimes
needing to list all his or her liaisons in an effort to either
humiliate or make some kind of confession-amend. On a more
cheerful note, wedding sites where the guests are listed.

> > Is there any way to place these into two
> > or three columns which flow automatically,
>
> And why would you do _that_? You can, though, create a tabular-looking
> presentation in a fairly simple way, but you need to use markup that makes
> each name an element. I guess that would most logically be

Re: Flowing text across columns

am 04.05.2007 00:46:20 von dorayme

In article
<1178187961.844894.261730@h2g2000hsg.googlegroups.com>,
Andy Dingley wrote:

> On 3 May, 08:47, James Hutton
> wrote:
> > I've got a large number of names (373 in fact) currently in .txt ready
> > to cut and paste into a page. Is there any way to place these into two
> > or three columns which flow automatically,
>
> No, HTML rendering doesn't grok newspaper columns.
>
> This is deliberate though, so why fight it?


Hey Andy, relax. You woke up punching. (Some of the preservative
in Red wines can cause trouble I have found). Op is not fighting
here yet.

> Multiple narrow columns
> (newspaper columns) are a feature of broadsheet newspaper printing,
> where the best way to arrange scrolling is two-dimensionally. On the
> web though, it's easy to scroll a long distance in one dimension, hard
> to scroll sideways. So the "web way" of listing your long list is just
> to keep it as a _single_ long list, not to break it into columns.

No no... all this is not relevant at all. What is wanted and it
would be absurd to deliberately not provide it if it was feasible
is this: the cols flow-wrap, left to right, they adjust their
size to the browser window just like with floated divs. Sideways
scrolling is no necessary part of this conception. I, for one,
would like it very much. This would be 'newspaper' cols adapted
for the web.

--
dorayme

Re: Flowing text across columns

am 04.05.2007 14:21:45 von jkorpela

Scripsit James Hutton:

> Well it's the roll of honour for ARA General Belgrano, so I'd like to
> get all of them mentioned in one place.

I asked whether it would be useful to visitors. The few people who would be
interested in such matters would have their needs satisfied if you had just
a link to a document that contains the names as a list, in any format (HTML

Re: Flowing text across columns

am 04.05.2007 14:30:16 von jkorpela

Scripsit dorayme:

>>> I've got a large number of names (373 in fact) currently in .txt
>>> ready to cut and paste into a page.
>>
>> But why would you do that?
>
> Surely there could be many good reasons.

Maybe there could, but good examples are hard to find.

> For example, a jailed
> identity thief might want to list all his victims to boast about
> his exploits or indeed, to make a public confession and apology.

Where I live (within the European Union), that would be a crime, according
to legislation based on the directive on protection of personal data, among
other things.

> On a more
> cheerful note, wedding sites where the guests are listed.

That would be illegal too, unless you have a freely given permission based
on sufficient information, from each and every guest.

> Or, to remember something I once did, just float the

Re: Flowing text across columns

am 04.05.2007 23:56:53 von dorayme

In article ,
"Jukka K. Korpela" wrote:

> You mean dividing something that is logically one list, into a set of

Re: Flowing text across columns

am 05.05.2007 04:08:40 von Joel Shepherd

"Jukka K. Korpela" wrote:

> Scripsit James Hutton:
>
> > Well it's the roll of honour for ARA General Belgrano, so I'd like to
> > get all of them mentioned in one place.
>
> I asked whether it would be useful to visitors. The few people who would be
> interested in such matters would have their needs satisfied if you had just
> a link to a document that contains the names as a list, in any format (HTML
>

Re: Flowing text across columns

am 05.05.2007 10:43:10 von jkorpela

Scripsit Joel Shepherd:

> A single giant list of 1000-45000 names is not at all pleasant to
> read, even if from a machine's point of view it's quite efficient.

Well that _was_ part of my point. Who wants to read 45,000 names, no matter
how they are displayed? You want to _search_ for names. So a search form
would work well, properly implemented. But even a separate flat text file is
better than a contrived way to rendering the names as part of a web page
organized as a sequence of lists formatted in columns. One name per line is
not a problem, rather an asset. When you see a name on one line, e.g. after
using the Find function of a browser or a text editor, it's better than
seeing the name in some column in a row where you need to scan with your
eyes to find the relevant item.

One name per line is also much better than any columnar presentation, when
_people's_ names are involved. A person's name might be anything from two or
three one-syllable words to a dozen of long words.

--
Jukka K. Korpela ("Yucca")
http://www.cs.tut.fi/~jkorpela/

Re: Flowing text across columns

am 05.05.2007 10:58:22 von Ben C

On 2007-05-05, Jukka K. Korpela wrote:
> Scripsit Joel Shepherd:
>
>> A single giant list of 1000-45000 names is not at all pleasant to
>> read, even if from a machine's point of view it's quite efficient.
>
> Well that _was_ part of my point. Who wants to read 45,000 names, no matter
> how they are displayed? You want to _search_ for names. So a search form
> would work well, properly implemented. But even a separate flat text file is
> better than a contrived way to rendering the names as part of a web page
> organized as a sequence of lists formatted in columns. One name per line is
> not a problem, rather an asset. When you see a name on one line, e.g. after
> using the Find function of a browser or a text editor, it's better than
> seeing the name in some column in a row where you need to scan with your
> eyes to find the relevant item.
>
> One name per line is also much better than any columnar presentation, when
> _people's_ names are involved. A person's name might be anything from two or
> three one-syllable words to a dozen of long words.

Where were you when they were designing the Vietnam veterans' memorial
in Washington?

Re: Flowing text across columns

am 09.05.2007 06:57:21 von Adrienne Boswell

Gazing into my crystal ball I observed James Hutton
writing in
news:f1c432$3km$1@aioe.org:

> I've got a large number of names (373 in fact) currently in .txt ready
> to cut and paste into a page. Is there any way to place these into two
> or three columns which flow automatically, or is it easier to do a 2 /
> 3 column layout and just add portions of the group into the columns
> manually?
>
> James

As others have noted, that could be difficult for the user. Why not page
the results (say 50 per page), and have an alpha list at the top of each
page? You could even offer the user a choice of how many records per page.

Of course, the above depends on having the ability to do this server side,
and ideally out of a database.

--
Adrienne Boswell at Home
Arbpen Web Site Design Services
http://www.cavalcade-of-coding.info
Please respond to the group so others can share