Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

A tutorial on how to keep a line from wrapping when a line of text exceeds the width of div

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article introduces the relevant knowledge of "a line of text exceeds the width of div to make it do not wrap" related knowledge, in the actual case of the operation process, many people will encounter such a dilemma, and then let the editor lead you to learn how to deal with these situations! I hope you can read it carefully and be able to achieve something!

When a line of text exceeds the width of div, the browser defaults to let it wrap. What if you don't want it to wrap?

I think the first thing you can think of is to truncate the text and add "." The way to do it.

Now the method I'm talking about is implemented using the CSS method:

The code is as follows:

Display:block;/* inline objects need to be added * /

Width:100px

Word-break:keep-all; / * No line wrapping * /

White-space:nowrap; / * No line wrapping * /

Overflow:hidden; / * hide the content beyond the width * /

Text-overflow:ellipsis; / * displays an ellipsis mark (...) when text overflows within an object; it needs to be used with overflow:hidden;. , /

This is the end of the tutorial on how to keep a line of text from wrapping when it exceeds the width of div. Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report