Hongmu Notes
Home Language Notes html css title displays one line and hides the excess part
Language Notes CSS

html css title displays one line and hides the excess part

html css title displays one line and hides the excess part

To display a heading as a single line in HTML while hiding any overflow content, you can use CSS styles to control how the element is rendered. Here is a commonly used approach:

HTMLcode:

<div class="title">  
  <h1>这是一个非常非常长的标题,需要隐藏超出部分</h1>  
</div>

CSScode:

.title {  
  overflow: hidden;  /* 隐藏超出部分 */  
  text-overflow: ellipsis;  /* 显示省略号 */  
  white-space: nowrap;  /* 强制不换行 */  
  width: 100%;  /* 标题容器的宽度,可根据需要进行调整 */  
}

In this code snippet, we create an element containing a title.<div>Element; added a class name to it.titleThen, in CSS, we define:.titleThe class has the following styles:

  • overflow: hidden;Hide the content outside the container.
  • text-overflow: ellipsis;The excess portion is displayed with an ellipsis (...).
  • white-space: nowrap;强制文本不换行,使其保持在单行显示.
  • width: 100%;Set the width of the heading container to 100% to ensure the heading occupies the full width of the container. You can adjust this value as needed.

With these CSS style settings, the title will be displayed on a single line; any overflow will be hidden and represented by an ellipsis.

微信赞赏

WeChat

支付宝赞赏

Alipay

✍️ Author: Hong Mu

webmaster · Thanks for reading, stay tuned for more exciting content

Author homepage View home page →

Related articles

css positioning

css positioning Language Notes CSS

Syntax: position: static | relative | absolute | fixed | center | page | sticky Default value: static Applies to: All elements except the display attribute defined as table-column-group | table-column Inheritance: No Animation: No...
👁 119
css vh and vw adaptive

css vh and vw adaptive Language Notes CSS

In the mobile terminal, REM is used to change the root HTML, and the mobile terminal adaptation is realized through a piece of JS. This article uses pure CSS viewport units to self-adapt. Although the current compatibility is not fully acceptable, it does not prevent you from recognizing the power of vw and vh. The implementation of responsive layout relies on media queries (Media Queries). Select the width size of mainstream devices as breakpoints to target...
👁 356

Recommended reading

(PC+WAP) Education Management Consulting Website – pbootCMS Template; Public Speaking Training Website Source Code Download – 0053

(PC+WAP) Education Management Consulting Website – pbootCMS Template; Public Speaking Training Website Source Code Download – 0053 Practical Collection pbootcms Template

A PbootCMS website template designed for the education management consulting and public speaking training industries, supporting both PC and WAP access. Its minimalist yet professional design is ideal for showcasing training courses and instructor teams. The template includes built-in features such as course introductions, student testimonials, and trial session booking functionality, helping educational institutions enhance their online customer acquisition capabilities. Template Display | Installation Instructions | Website Backend: /admin.php | Username: admin | Password: admin...
👁 50
(PC + WAP) Blue Atmospheric Infrastructure Construction Project – Construction Industry PbootCMS Website Template; Download Source Code for Infrastructure Facility Project Company Websites – 0673

(PC + WAP) Blue Atmospheric Infrastructure Construction Project – Construction Industry PbootCMS Website Template; Download Source Code for Infrastructure Facility Project Company Websites – 0673 Practical Collection pbootcms Template

A PbootCMS website template featuring a blue, sophisticated design style, ideal for infrastructure construction projects and construction-related enterprises; supports both PC and WAP devices. Its robust, professional design effectively showcases infrastructure projects, engineering case studies, and corporate strength, helping construction or infrastructure companies establish an authoritative online presence. Template Display | Installation Instructions | Website Backend: /admin.php | Username: admin | Password: adm...
👁 64
Entertainment Film & Television News Website Template 0126

Entertainment Film & Television News Website Template 0126 Practical Collection Yiyou template

An eYouCMS template designed for story-driven, entertainment-focused, and film/TV news websites. Its trendy and stylish design enables the aggregation of film/TV news, plot summaries, entertainment gossip, and celebrity updates. This template helps entertainment media platforms attract younger audiences online and build their influence. Template Display | Installation Instructions | Website Backend: /login.php | Username: admin | Password: admin | Related Articles: Summary of Common Installation Issues for eYouCMS | eYouCMS...
👁 32
Responsive sports news and information website template 0760

Responsive sports news and information website template 0760 Practical Collection Yiyou template

An EyouCMS responsive template designed for sports news and information websites. Its dynamic information-feed design enables the aggregation of sports event updates, score reports, and in-depth analyses, helping sports media outlets attract sports enthusiasts online and build industry influence. Template Display | Installation Instructions | Website Backend: /login.php | Username: admin | Password: admin | Related Articles: Summary of Common Installation Issues for EyouCMS | EyouCMS...
👁 42