I have following html:
<table width="100%;>
<tr><hr style="width:100%;"></hr></tr>
<tr>
<span style="float:left">abc</span>
<span class="noindex" style="float:right">PageID</span>
</tr>
<br/>
<tr>Some text here...</tr>
</table>
I want to add 100px margin from right of the screen. i tried adding margin-right and removing width =100% it is not working.
margin-right will not work if you set width to 100%.
What you could do is :
UPDATED
If you are creating a page layout, then you should be using divs instead of tables. Tables are appropriate for data display (like custom grid style view).
Hope it helps.