Click to See Complete Forum and Search --> : Vertical serparator


Jon723
02-21-2004, 09:07 PM
Is there a way to create a vertical separator in an HTML document? If so what is the tag?? Thanks a lot.

PeOfEo
02-21-2004, 09:09 PM
There is none. What are you looking to do, have navigation on one side and content on the other or something? Its time you invested some time in learning css to do document layout if thats what you are looking for. But no, there is no <vr> tag.

Paul Jr
02-21-2004, 09:36 PM
Originally posted by PeOfEo
But no, there is no <vr> tag.
Pffft, there should be. Whoever invented the d**m thing must've been on crack or something.

PeOfEo
02-21-2004, 09:39 PM
Originally posted by Paul Jr
Pffft, there should be. Whoever invented the d**m thing must've been on crack or something. But when you ditch all the styled stuff what do you have? Text. How do you intend to have a line going down several rows of text rather then horizontally? Unless you did
|
|
|
|
|
|
|
|
. Trying to just drop in a table or div that is one px width with a border would fail because the text would be above and below it.

Paul Jr
02-21-2004, 09:42 PM
Originally posted by PeOfEo
But when you ditch all the styled stuff what do you have? Text. How do you intend to have a line going down several rows of text rather then horizontally? Unless you did
|
|
|
|
|
|
|
|
. Trying to just drop in a table or div that is one px width with a border would fail because the text would be above and below it.
I dunno.. that would be for them to figure out. :D

PeOfEo
02-21-2004, 09:44 PM
Originally posted by Paul Jr
I dunno.. that would be for them to figure out. :D poor them :(

Paul Jr
02-21-2004, 09:50 PM
Originally posted by PeOfEo
poor them :(
LMFAOWROTFS!!! :D

Well... they invented all this other stuff, a simple <vr /> tag shouldn't be that hard. ;)

jalarie
02-23-2004, 01:22 PM
<hr size="200" width="2" />

PeOfEo
02-23-2004, 07:20 PM
Originally posted by jalarie
<hr size="200" width="2" /> huh... did not think you could do that. It is still going to cause problems though with just pushing the text down rather then separating it.