I\'m trying to produce a highlighted text effect with a bit of padding, but the padding is only applied to the beginning and end, not new lines.
#highlight {
You need to set the display to inline-block or block.
inline-block
block
#highlight { display: inline-block; /* ... */ }