<div style="border:1px solid #ff0000; float:left;width: 790px">
gives all of the styling inline in your PHP file, without reference to the stylesheet. The more "proper" way would be to use something like
<div class="myAttributes">
in the PHP file, and add to your stylesheet
.myAttributes {border:1px solid #ff0000; float:left; width: 790px;}
...Like keneso said:)


Reply With Quote

