|
Posted by Jukka K. Korpela on 07/06/05 19:30
"MW de Jager" <mwdejager@privatemail.me.uk> wrote:
> I'm not an HTML programmer
Nobody is.
> so please excuse my ignorance.
Ignorance is curable.
> I am trying to force
You cannot force in HTML, really.
> text to display on the next line,
That can be "forced", in a sense, by using <br>. Of course, it does not
really force. How could you force next line when your document is in
fact rendered as speech, not as visible characters?
> but I do not
> want an emply line between lines of text.
Huh?
> Option1
> Option2
> Option3 etc. with no blank lines inbetween.
Option1<br>
Option2<br>
Option3
or perhaps better
<div>Option1</div>
<div>Option2</div>
<div>Option3</div>
> begin 666 New.html
Please don't. We use plain text here.
> <P>Option1</P>
> <P>Option2</P>
> <P>Option3</P>
Are they paragraphs? If they are, use that markup, and worry about
rendering later. (It's easy to fix it in CSS.) If not, use other
markup. We cannot really guess what it should be, unless we know the
real content and context. Maybe they are actually items in a list?
--
Yucca, http://www.cs.tut.fi/~jkorpela/
Pages about Web authoring: http://www.cs.tut.fi/~jkorpela/www.html
Navigation:
[Reply to this message]
|