How do I specify the height of the blank line that inserting a <p>
creates?
views:
201answers:
4I think he wants to change the margin. The margin is what adds the space below the `<p>` tag.
Blixt
2009-07-23 19:43:15
Oh and when it comes to `line-height`, I find it good practice to define it without a unit, like so: `line-height: 1.4;` That makes it always relative to the current font size (even when cascading, unlike `1.4em`.)
Blixt
2009-07-23 19:44:14
Updated with your suggestions Blixt
Chacha102
2009-07-23 19:48:19
+5
A:
In your style sheet, or style sheet section, define this: (example)
p { margin-top: 0.6em; margin-bottom: 0em; }
You can also specify it in the individual tag <p style="margin-top:.....">
Matthias Wandel
2009-07-23 19:44:41