HTML Spacing

I am developing a small application that can submit one of 6 design templates with common content.

What is the best (most consistent) way to maintain the space and layout of the text (between lines, etc.).

We thought about using the simple <br>, but we could lose some flexibility compared to something else. This is a table layout

Greetings

+5
source share
4 answers

Yahoo (, , ) <p> -, - <p> Yahoo, . /, <br />, , , . <br /> line-height, .

:

  • Outlook 2007/2010 line-height.
  • margin / - . padding, margin, , .

, HTML-- (, , ) , / / width height <td>. style="border:0; margin:0; padding:0;"

+1

.

,

<p style="margin:0 0 15px 0;padding:0;line-height:value;font-size:value">Insert Paragraph information here</p>
<p style="margin:0 0 15px 0;padding:0;line-height:value;font-size:value">Insert Paragraph information here</p>
+2

Acid. ! ...

+1

- p , CSS.

And you should consider replacing most of the table layout with divCSS styles as well (unless you need horizontal elements with the same height, obviously).

My answer would be better if you pointed out a specific problem, for example: "How can I achieve this <insert image here>with HTML?"

0
source

All Articles