我有一些带有很长标签的 HTML。问题是标签看起来像这样:
this is a message
that is very very
very long.. and is
spanning multiple
lines..:
我希望它看起来像这样:
this is a message that is very very very
long.. and is spanning multiple lines..:
这是我的代码
<ul>
<li class="left">
<LABEL for="field_1">this is a message that is very very very long.. and is spanning multiple lines..:</LABEL>
</li>
<li>
<input id="field_1" name="field_1" type="checkbox" value="1" />
</li>
</ul>