Hi Guys
I am trying to create a two columns text using two divs beside each other or in two columns of a table but setting them vertically to appear on the TOP.The problem is when ever I want to use any CSS/HTML elements the browsers do not care to the style any more!
As you can see I did not use any text element like <p> or <h> at following html and the text takes style format and stands at the top but when I try to start the text with any of <p> or <h> the text appears at the middle!
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<style type="text/css">
table
{
border-collapse:collapse;
}
table.welcome
{
text-align:left;
}
td.welcome{
width: 425px;
text-align:justify;
vertical-align:top;
}
td.space{
width: 60px;
}
</style>
</head>
<body>
<table class ="welcome">
<tr>
<th>Welcome</th>
</tr>
<tr>
<td class ="welcome">Ensure you are not spamming, plugging or linking to your product, service or website anywhere within your post.</td>
<td class="space"></td>
<td class ="welcome">Ensure you are not spamming, plugging or linking to your product, service or website anywhere within your post.</td>
</tr>
</table>
</body>
</html>
Can you please let me know what I am doing wrong here?
Thanks