简体   繁体   中英

ASP.NET TextBox control is not wraping

I'm trying to wrap text in asp:textbox control. This is code of my textbox:

<asp:textbox
    runat="server"
    ReadOnly ="true"
    BackColor="Transparent"
    BorderStyle="None"
    TextMode="MultiLine"
    Wrap="true"
    style=" text-align: center;font-size: medium;" 
    Text='<%# Eval("Description") %>'>>
</asp:textbox>

And this is the effect:

在此处输入图像描述

I got horizontal scrollbar, and text is not wrapping. I want to achieve word wrapping without scrollbar (control should exceed its height). I tried adding CSS wrapping tags, but effect is the same.

Try to add white-space: pre-wrap; to your CSS, then it works just fine:

style="white-space: pre-wrap; text-align: center; font-size: medium;" 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM