My code is:
<label>Something:</label> <span>Some Value</span>
<br/>
<label>Something:</label> <span>Some Value</span>
<br/>
The <label>
has a fixed width.
Output:
Something: Some Value
Something: Some Value
However if Some Value is quite long it wraps incorrectly
Something: Some Value
Something: Some Value Some
Value Some
Is there a nice solution to this so it lines up as you'd expect? I'm making rather a large table of data and it's not possible to predict which values will span multiple lines in advance.