Quote:
Originally Posted by Doitsu
Wouldn't it make more sense to break up the table into <divs> containing three paragraphs (one paragraph each for Romaji, Japanese and English)?
I'd simply copy the table as a tab-delimited text file to the clipboard, paste it into a RegEx-capable editor (e.g. Notepad++) and use the following parameters to transform it:
Find what: ^(.*?)\t(.*?)\t(.*?)$
Replace with: <div><p>\1</p><p>\2</p><p>\3</p></div>
|
+1 this seems like the most logical way, remove marings of divs so they look like a table.
This comes as a question: I know that a able is reflowable so all you need is the cells width, in that case what is the point of the
Quote:
float:left
and
margin-right
|
rules you added?