0

我有label一个ASP.NET C#应用程序。

runtime处,ASP.NETlabelpopulated与文本一起获取。

ASPX文件中,我们有以下代码:

<asp:Label ID="commentLabelForGridView" runat="server" 
      Style="text-align:left;" font-size="1.75em" ></asp:Label>

代码隐藏的 CS文件中,我们有以下代码:

commentLabelForGridView.Text = "BlahBlahBlah........Blah...................";

当 ASP 标签中有大量文本时,text页面上呈现的Multilined.

问题是行之间没有足够的空间,因此很难阅读,因为它看起来很拥挤。

如何增加 ASP.NET 标签中显示的文本中的行间距?

4

2 回答 2

1

在 Style 中添加 line-height 属性...

<asp:Label ID="commentLabelForGridView" runat="server" 
      Style="text-align:left; line-height:1.5px" font-size="1.75em" ></asp:Label>

...它可以是:line-height:1.5px 或 line-height:100%

希望能帮助到你..

于 2015-05-11T09:53:13.953 回答
0

感谢@user2025312 提到修改 line-height 属性应该会有所帮助。

于 2013-11-01T18:43:23.620 回答