Multiline label in asp.net

后端 未结 5 2014
感动是毒
感动是毒 2021-01-17 14:09

I want to use a multiline label but as the control is browser dependent, even on setting the height, width and wrap properties of the label control I am unable to display mu

5条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-17 14:39

    If you mean asp:Label then it resolves to a span element in HTML output. It is neither single-line or multiline.

    Define some fixed width for this element and the text will wrap into several lines when it's long enough.

    
    

提交回复
热议问题