We set margin and padding 0 for p tags in our applicatiojn ( we use TinyMCE which has p tags by defauly - and it create extra lines - so we chose this setting to suppress that extra line) .
We notice a difference in Browser(FF) display and Prince XML Display. Prince truncates the line after the bulleted contents , but Browser would give a line spacing . Is there any way Prince can make this work like in the browser?
<html>
<style type="text/css">
p {
margin: 0;
padding: 0;
}
</style>
<ul>
<li>Test</li>
<li>Test</li>
<li>Test</li>
</ul>
<p>{For more information please contact this person}</p>
<p>{For more information please contact this person}</p>
</html>
We notice a difference in Browser(FF) display and Prince XML Display. Prince truncates the line after the bulleted contents , but Browser would give a line spacing . Is there any way Prince can make this work like in the browser?
<html>
<style type="text/css">
p {
margin: 0;
padding: 0;
}
</style>
<ul>
<li>Test</li>
<li>Test</li>
<li>Test</li>
</ul>
<p>{For more information please contact this person}</p>
<p>{For more information please contact this person}</p>
</html>