如何使用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;" />
我也尝试使用固定宽度的所有空白选项:200px;但仍然没有任何作用.
我可以静态地固定长度,宽度或其他值:因为控件不会改变.
解决方法
尝试这样,你可以看到它是如何工作的:
<input type="button" value="Carriage return separators" style="text-align:center;">