如何将文本移动到具有该type="button"
属性的 HTML 输入元素中的新行?
我有以下代码:
<input type="button" id="btnTexWrapped" value="I see this is a long sentence here." style="width: 200px;" />
我希望将按钮的文本值包裹在两行中。我尝试将它输入到 HTML 的下一行。它没有像我预期的那样工作:
<input type="button" id="btnTexWrapped" value="I see this is a long
sentence here." style="width: 200px;" />
我也尝试使用所有选项white-space
with fixed width: 200px;
,但仍然没有任何效果。
我可以静态地固定长度、宽度或其他值:因为控件不会改变。