I have the following exact same output in two different pages in the same ASP.NET 4.5 web form application:
<b>Hiring Type</b>:<table id="MainContent_CheckBoxList10"><tr><td><input id="MainContent_CheckBoxList10_0" type="checkbox" name="ctl00$MainContent$CheckBoxList10$0" value="New" /><label for="MainContent_CheckBoxList10_0">New</label></td></tr><tr><td><input id="MainContent_CheckBoxList10_1" type="checkbox" name="ctl00$MainContent$CheckBoxList10$1" value="Transfer" /><label for="MainContent_CheckBoxList10_1">Transfer</label></td></tr></table>
In one page it comes out as follows (this is what I want):
On another page, it comes out as follows:
Why are there big spacings between the two rows of items. What attributes of which Html tags are those?
Notice that I have unchecked all the styles and they still appear markedly different. Each appears as it is shown above even if I had ticked all the style boxes in IE Developer Tools.
How can I get the second page to look like the first?
Thanks.