Thank you for the reply ralph!
Yeah, the p's need to be vertically lined up like they would be for a table, for example look at this
HTML Code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>table</title>
<style media="all">
.multicol {display:table;width:300px}
.colA, .colB {display:table-cell;}
p {
border:solid #000 1px;
}
</style>
</head>
<body>
<div class="multicol">
<div class="colA">
<p>Some text of varied length 1A</p>
<p>Some text of varied length 2A</p>
<p>Some text of varied length 3A</p>
</div>
<div class="colB">
<p>Some text of varied length 1B</p>
<p>Some text of varied length 2B
Some text of varied length
Some text of varied length
Some text of varied length
Some text of varied length
Some text of varied length</p>
<p>Some text of varied length 3B</p>
</div>
</div>
</body>
</html>
so that it looks like this
HTML Code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>table</title>
<style media="all">
table {
width:300px;
}
table td {
border:solid #000 1px;
}
</style>
</head>
<body>
<table>
<tr><td>Some text of varied length 1A</td><td>Some text of varied length 1B</td></tr>
<tr><td>Some text of varied length 2A</td><td>Some text of varied length 2B
Some text of varied length
Some text of varied length
Some text of varied length
Some text of varied length
Some text of varied length</td></tr>
<tr><td>Some text of varied length 3A</td><td>Some text of varied length 3B</td></tr>
</table>
</body>
</html>
Bookmarks