如何增加 asp.net 中多行文本框的行距?
How to increase the line spacing in a multiline textbox in asp.net?
<asp:TextBox ID="questionTb" runat="server" Height="160px" TextMode="MultiLine" Rows="10" MaxLength="2" Width="100%" OnTextChanged="questionTb_TextChanged"></asp:TextBox>
上面给定的代码段提供了下面提到的输出。
有没有办法增加两行之间的space? (例如:行间距:1.5)
我的问题的正确答案是:
textarea { line-height: 200% !important; }
试试这个
textarea {
padding: 10px;
line-height: 1.3;
}
<asp:TextBox ID="questionTb" runat="server" Height="160px" TextMode="MultiLine" Rows="10" MaxLength="2" Width="100%" OnTextChanged="questionTb_TextChanged"></asp:TextBox>
上面给定的代码段提供了下面提到的输出。
有没有办法增加两行之间的space? (例如:行间距:1.5)
我的问题的正确答案是:
textarea { line-height: 200% !important; }
试试这个
textarea {
padding: 10px;
line-height: 1.3;
}