LouPepin / iphone-universal

Automatically exported from code.google.com/p/iphone-universal
GNU Affero General Public License v3.0
0 stars 0 forks source link

paragraph on plain site loses formatting #7

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
fubar has no formatting or wrong formatting:
<body>
<p><a href="#" class="green button">Next</a></p>
<p>fubar</p>
</body>

fubar has correct formatting:
<body>
<ul class="data"><li>test</li></ul>
<p><a href="#" class="green button">Next</a></p>
<p>fubar</p>
</body>

this happens a lot.

for i you put a normal rounded list in the page the following <p> is fine. if 
you insert a button in 
between <p> loses its formatting.

why is that? i cant get it figured out :(

thanks!

-T

Original issue reported on code.google.com by orte...@gmail.com on 3 Jul 2009 at 12:28

GoogleCodeExporter commented 8 years ago
i temporarily fixed it with this:
        /* standard paragraph on body */

        /* ul + p, ul.data + p + p, ul.form + p + p { */
        body p { 

Original comment by orte...@gmail.com on 3 Jul 2009 at 12:37