Define automatic line feed

Source: Internet
Author: User

<Asp: Label> If the control contains more content than the control column width, the control will automatically wrap the text if it is a Chinese character. if the content is only a letter, the control will not wrap the text, the screen is extended until the display is complete, and the interface looks ugly.
Baidu once found the solution, as long as the following sentence is added to the style:

Style = "word-break: Break-all"
However, there are more than labels in the project. If you change one by one, I am afraid I don't know that the monkey year and month can be changed. So I define the Label display in the whole CSS:

Label {
Word-break: Break-all;
}

Refresh the page, why? Does not work.
View the page source code. The original <asp: Label> is not interpreted as the <label> statement, but is interpreted as <span>, dizzy, so the CSS is modified.

SPAN {
Word-break: Break-all;
}

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.