Hi, why the text is not getting right-margin in my code ?
Please see the red color below.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<style>
.borderTable {
padding: 2px 4px 2px 4px;
border: 1px solid #660000;
}
table.inlineTable{
display:inline;
}
.fieldwidth{
width:200px;
}
</style>
</head>
<body>
<table width="100%" height="130" class="borderTable" >
<tr>
<td width="103"> </td>
<td width="147"> </td>
<td width="94"> </td>
<td width="113"> </td>
<td width="128"> </td>
<td width="142"> </td>
</tr>
<tr>
<td> </td>
<td>About us </td>
<td>Feedback</td>
<td>Blog</td>
<td>Subscriptions</td>
<td> </td>
</tr>
</table>
<table width="30%" height="25" border="0" >
<tr>
<td width="29"> </td>
<td width="245">Search
<label>
<input type="text" name="textfield">
</label></td>
<td width="177"><label>
<input type="button" name="button" value="Go">
</label></td>
</tr>
</table>
<div id="container" width="100%">
<div>
<fieldset class="fieldwidth">
<legend>Sign in</legend>
[COLOR="Red"]<div style="margin-right:10px">[/COLOR]
<label>
<span>User Name</span>
<input type="text" name="textfield2">
</label>
</div>
[COLOR="Red"]<div style="margin-right:5px">[/COLOR]
<label>
<span>Password</span>
<input type="text" name="textfield3">
</label>
</div>
<div class="actions">
<span>Login</span>
<span>Sign Up</span>
</div>
</fieldset>
</div>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
</div>
</body>
</html>