


Text-related styles and jQuery object height and width issues are explained respectively_jquery
WEB development often involves issues related to text processing. Here is a summary based on the usage. There is also the issue of jQuery's object height, which are explained as follows:
1. Related texts in CSS Style of
1, word-break: normal | keep-all | break-all
Sets or retrieves how words are handled at container boundaries, whether to allow line breaks within words;
normal: The browser's default processing method;
keep-all: When the container boundary is encountered, the word will not break;
break-all: When the container boundary is encountered, the word can be broken, that is, the word will be broken and broken. ;
2, word-wrap: normal | break-word
Set or retrieve whether to break when the content exceeds the boundary of the specified container;
normal: When the content exceeds the boundary of the container, the content can be broken Open or overflow the boundary of the container;
break-word: When the content exceeds the boundary of the container, the content will wrap at the boundary of the container;
3, white-space: normal | pre | nowrap | pre-wrap | pre-line
Sets or retrieves the processing method of spaces within the object;
normal: the browser's default processing method;
pre: does not merge whitespace, and does not wrap if the content exceeds the container boundary;
nowrap: Forces all text to be displayed in one line, merging excess whitespace until the end of the text or encountering the br object;
pre-wrap: Do not merge the whitespace between texts, and wrap when the content is large;
pre- line: Do not retain the white space between texts, and line breaks are encountered when the content is long;
4, text-transform: none | capitalize | uppercase | lowercase | full-width
Retrieve or set the text in the object capitalize;
none: Leave it as it is, no conversion;
capitalize: Convert the first letter of each word to uppercase;
uppercase: Convert all words to uppercase;
lowercase: Convert all words to lowercase ;
full-width: All text is converted to fullwidth form, and if there is no corresponding fullwidth form, it is left intact.
5, text-overflow: clip | ellipsis
Set the processing method when the retrieved text exceeds the boundary of the container;
clip: When the content exceeds the boundary, the excess part is clipped;
ellipsis : When the content exceeds the boundary, the excess part is represented by an ellipsis;
Note: This attribute needs to be set with white-space=nowrap, overflow=hidden to work, and these two attributes are placed before text-overflow;
6, text-indent:
Retrieve or set the indent of the text in the object;
length: The text indent specifies the length value, which can be negative.
percentage: text indentation specifies the percentage value, which can be negative.
hanging: Define the indentation effect on the first line of the block container or the first line of each forced line break inside, soft line breaks are not affected;
each-line: Reverse all indented effects line;
such as: p{text-indent:2em each-line}
7,line-height: normal |
retrieve or set The line height of the object, that is, the distance from the lowest to the top of the text characters;
normal: By default, the content is allowed to open or exit the specified container;
length: Use the specified value to specify the line height, which can be a negative number ;
percentage: Specify the row height with the specified percentage, which can be a negative number;
number: specify the row height with the product factor, which can be a negative number;
Example:
2. The problem of jQuery obtaining the height and width of the DOM object
The height-related methods are: height(), outerHeight(), outerHeight(true), and the width-related methods are: : width(), outerWidth(), outerWidth(true)
If there is a div object with id=div_id, then the various widths and heights are calculated as follows:
$("#div_id").height() / $("#div_id").width(); / / What is obtained is the height/width of the div itself, (excluding padding, margin, border)
$("#div_id").outerHeight() / $("#div_id").outerWidth(); // Contains the height/width of the div itself, the top and bottom height/width of the padding, and the top and bottom height/width of the border (excluding the height/width of the margin)
$("#div_id").outerHeight(true) / $( "#div_id").outerWidth(true); // Contains the height/width of the div itself, as well as the total height/width of padding, border, and margin
Example:
div info: height : 30px, width : 500px, padding:10px 20px; margin:10px 5px,

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Frequently Asked Questions and Solutions for Front-end Thermal Paper Ticket Printing In Front-end Development, Ticket Printing is a common requirement. However, many developers are implementing...

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.

There is no absolute salary for Python and JavaScript developers, depending on skills and industry needs. 1. Python may be paid more in data science and machine learning. 2. JavaScript has great demand in front-end and full-stack development, and its salary is also considerable. 3. Influencing factors include experience, geographical location, company size and specific skills.

Learning JavaScript is not difficult, but it is challenging. 1) Understand basic concepts such as variables, data types, functions, etc. 2) Master asynchronous programming and implement it through event loops. 3) Use DOM operations and Promise to handle asynchronous requests. 4) Avoid common mistakes and use debugging techniques. 5) Optimize performance and follow best practices.

Discussion on the realization of parallax scrolling and element animation effects in this article will explore how to achieve similar to Shiseido official website (https://www.shiseido.co.jp/sb/wonderland/)...

How to merge array elements with the same ID into one object in JavaScript? When processing data, we often encounter the need to have the same ID...

The latest trends in JavaScript include the rise of TypeScript, the popularity of modern frameworks and libraries, and the application of WebAssembly. Future prospects cover more powerful type systems, the development of server-side JavaScript, the expansion of artificial intelligence and machine learning, and the potential of IoT and edge computing.

In-depth discussion of the root causes of the difference in console.log output. This article will analyze the differences in the output results of console.log function in a piece of code and explain the reasons behind it. �...
