2 column text

L

lapom

I am trying to create 2 column text in my web page. I don't know how to get
it to keep the formatting. Do I need to use a table, and if so, how do I get
rid of the lines so it doesn't look like a table?
 
T

Trevor L.

lapom said:
I am trying to create 2 column text in my web page. I don't know how
to get it to keep the formatting. Do I need to use a table, and if
so, how do I get rid of the lines so it doesn't look like a table?

CSS
table {border:0}

or
HTML
<table border="0">
 
Top