I have this:
<p>
<img src="media/icons/info_ticket.png"></img>
<h3>Ticket #TKMA<span><?php echo $_GET['CRy3sjzZOJyXE']; ?></span></h3>
</p>
And when I apply CSS to change the style of the img
it doesn't work! So, I inspected the element and I found this:
<p>
<img src="media/icons/info_ticket.png">
</p>
<h3>Ticket #TKMA<span>17</span></h3>
<p></p>
I don't understand why this happens.
` is a block-level element and should never be inside a `
`.
– Marc B Feb 15 '13 at 19:14