How to increase spacing between lines in CSS?

css, html

Solution

Here's a full example of how to make the line spacing within `<td>`s one and a half times the height of the font:

<html><head>
<style>
td {
    line-height: 150%;
}
</style>
</head>
<body>
<table>
    <tr>
        <td>Hello,<br/>World!</td>
    </tr>
</table>
</body></html>

Problem

I have something similar to that: ``` <table> <tr> <td>Hello,<br/>World!</td> </tr> </table> ``` Both lines ``` Hello, World! ``` are displayed too close to one another. Any way to increase spacing between them (by a portion of a line width (without another `<br/>`))?

Original source