UncleMortis
Programmer
I'm creating a web page that at the moment doesn't have any CSS, and consists of a fair few paragraphs with a picture and a small amount of text in each paragraph. Every now and again, when I check the resulting page, the paragraphs are indenting themselves further across the page instead of staying flush to the left.
My code is correct, as I've gone through it with my own eyes, a html validator and the w3.org validator and everthing is coming as as being fine. What would cause this sort of thing to happen? Oh yeah, I found that by putting a "br" between the offending paragraphs, it puts everything back to normal.
Below is one part of my code where each resulting paragraph is indenting further than the last.
From what I can see there's no reason why these paragraphs would move from the left side of the page. any help would be appreciated.
Paul
My code is correct, as I've gone through it with my own eyes, a html validator and the w3.org validator and everthing is coming as as being fine. What would cause this sort of thing to happen? Oh yeah, I found that by putting a "br" between the offending paragraphs, it puts everything back to normal.
Below is one part of my code where each resulting paragraph is indenting further than the last.
Code:
<p>
<a href="sistersobsq.html">
<img src="images/sistersobsq_sm.jpg" align=left hspace=5 vspace=5 alt="Sisters of Battle Squad"></a>
<b>Sisters of Battle Squad </b><br>
This box contains 10 sisters of battle.<br>
<b>Price:</b> $55.00
</p>
<p> <a href="eldreavjetb.html"><img src="images/eldreavjetb_sm.jpg" align=left hspace=5 vspace=5 alt="Eldar reaver jet bike"></a>
<b>Dark Eldar reaver jet bike </b><br>
This box contains 1 Dark eldar reaver jetbike.<br>
<b>Price:</b> $18.00
</p>
<p> <a href="necrdestlord.html"><img src="images/necrdestlord_sm.jpg" align=left hspace=5 vspace=5 alt="Necron Destroyer Lord "></a>
<b>Necron Destroyer Lord</b><br>
This box contains 1 Necron Destroyer Lord.<br>
<b>Price:</b> $35.00
</p>
From what I can see there's no reason why these paragraphs would move from the left side of the page. any help would be appreciated.
Paul