Ellipses appear when multi-line text overflows This article recommends 2 methods. 1. CSS Tip: Only compatible with Chrome browsers. ff is not supported. .box { overflow: hidden; /* Overflow content is not displayed when overflow occurs*/ text-overflow: ellipsis; /* Use ellipsis instead when overflow occurs*/ display: -webkit-box; /* Private properties of the Chrome browser. Displayed as a box. */ -webkit-box-orient: vertical; /* Arrange elements vertically */ -webkit-line-clamp: 2; /* How many lines to display */ } Extension word-wrap
text-overflow
white-space
box-orient This property is not yet supported by browsers. Need to use the private properties of each browser.
line-clamp Only Chrome-based browsers support their own private properties. How many lines of block-level elements to display. 2.js There are many ways to use js to control how overflow text is displayed. Here is a recommended script file: ellipsis.js ellipsis.js
Directions: 1. Import script files <script src="https://cdn.jsdelivr.net/npm/[email protected]/ellipsis.js"></script> 2. Use var ell = Ellipsis({ lines: 3 }) var ele = document.getElementsByClassName('test') ell.add(ele) Extension It also has some configuration items. If not configured, the default value is used. { ellipsis: '...', // The default alternative text to display debounce: 0, // The delay before executing responsive: true, // Whether to execute when the window size changes className: '.clamp', // The default action is for elements with this class. lines: 2, // Only 2 lines of elements appear by default. portrait: null, // No change by default, if you want a different number of rows in portrait mode, break_word: true // Break words by default. } The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. |
<<: Vue implements real-time refresh of the time display in the upper right corner
>>: HTML Tutorial: Collection of commonly used HTML tags (6)
React originated as an internal project at Facebo...
This article is welcome to be shared and aggregat...
Table of contents What is a container data volume...
Overview of Alibaba Cloud Security Group Sharing ...
Install SSHPASS For most recent operating systems...
[Usage and function of mysql cursor] example: The...
The table is as follows: Code when Unity reads an...
This article mainly introduces the process analys...
The GROUP BY statement is used in conjunction wit...
apache: create virtual host based on port Take cr...
Front-end test page code: <template> <di...
This article shares the specific code for JavaScr...
This article shares the data display code for Jav...
This collection showcases a number of outstanding ...
This article example shares the specific code of ...