2 column text

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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?
 
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">
 
Back
Top