| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
| "http://www.w3.org/TR/html4/loose.dtd"> |
| <html> |
| |
| <head> |
| <title>Line breaks</title> |
| </head> |
| <body> |
| This is good: |
| <div style="font-family:'Lucida Grande'; font-size:16pt; text-decoration:underline; width:100px; text-align:right;"> |
| <p style="border:solid green 1px;"> |
| Lorem ipsum |
| </p> |
| </div> |
| The following three should look like “good”: |
| <div style="font-family:'Lucida Grande'; font-size:16pt; text-decoration:underline; width:100px; text-align:right;"> |
| <p style="border:solid blue 1px;"> |
| Lorem ıpsum |
| </p> |
| <p style="border:solid blue 1px;"> |
| Lorem ıpsum |
| </p> |
| <p style="border:solid blue 1px;"> |
| Loreḿ ipsum |
| </p> |
| </div> |
| This is bad: |
| <div style="font-family:'Lucida Grande'; font-size:16pt; text-decoration:underline; width:100px; text-align:right;"> |
| <p style="border:solid red 1px;"> |
| Lorem ipsum |
| </p> |
| </div> |
| </body> |
| </html> |