mike55

Contributor
Joined
Mar 26, 2004
Messages
727
Location
Ireland
I have noticed that when I create a html table and adjust its rows and columns to suit my pages that the VS.NET 2005 environment seems to put the spaces in the form of   all over the damn shop. It there a particular reason why it does this, or is this a bug?

Mike55.
 
When coding HTML correctly you should fill and container with at least some data thus   is used an example would be a div

<div style="border: 1px solid black; height: 50px; width: 50px;></div>

The above will no display correctly in Firefox as there is no content in the container so the correct way is as follows ...

<div style="border: 1px solid black; height: 50px; width: 50px;> </div>

Regards

Andy
 
Dreamweaver does the same. As for not working in Firefox I don't know. All I can say is that for several of my university assignments I deleted the space and it functioned fine in Firefox. I found that you have to delete it in order to lower the height past a certain point.
 
Back
Top