How to prevent inline-block div from wrapping?

PHPz
Release: 2023-09-03 20:29:06
forward
920 people have browsed it

如何防止inline-block div换行?

In CSS, the ‘display’ attribute is used to set the display of child elements. When we set "inline-block" value for display property, it displays all child elements side by side. Additionally, it automatically creates a responsive design, as if it doesn't find enough space, it automatically wraps child elements.

Sometimes, we need to stop wrapping child elements to manage web space. In this case, we can manage the CSS "white-space" property to avoid wrapping child elements.

grammar

Users can follow the following syntax and use the "white-space" CSS property to prevent inline block divs from wrapping.

CSS_selector { white-space: nowrap; }
Copy after login

In the above syntax, CSS_selector is the parent element of all child elements that we set "inline-block" to display.

Let us go through the following example to understand how to prevent inline block elements from wrapping.

Example 1

In the example below, we create a parent div element containing the "container" class name. After that, we added three child elements in the parent container, each containing the "inline-block-div" class name.

In CSS, we use the "white-space: no-wrap" CSS property for the parent container and "display: inline-block" for all child elements. Additionally, we use some other CSS properties to style the div element.

In the output, the user can try reducing the size of the browser window and observe that the inline block div element does not wrap or go to the next line.

   

Preventing the inline-block divs from wrapping

Div 1
Div 2
Div 3
Copy after login

Example 2

In the example below, we have added multiple tables containing different data. The first table contains school data and the second table contains AC data.

We set the display of both tables equal to the inline block to display them side by side on the web page. Additionally, we use the "white-space" attribute with the "container" div element.

In the output, we can observe the two tables side by side, and if we reduce the window size, the table will not go to the next line because we prevent the two table elements from wrapping.

   

Preventing the inline-block divs from wrapping

school Name Total Students
ABC School 100
AC brand color Price
LG White 10000
Copy after login

Example 3

In the example below, we demonstrate how to prevent an inline block div element from conditionally wrapping. If we need to prevent an inline block div element from wrapping under any specific condition, we can use JavaScript.

In JavaScript, we access all div elements and iterate over all div elements using forEach() method. We use the "whitespace" property of the style object to prevent all inline block divs from wrapping using JavaScript.

   

Preventing the inline-block divs from wrapping

First
Second
Third
Fourth
Copy after login

Users learned how to prevent inline block div elements from wrapping. We use the "white-space" CSS property to prevent the div element from wrapping. However, preventing inline block div elements from wrapping is not a good practice as it takes away the responsiveness of the web page, but in some specific cases we can prevent this if we don't want the div element to expand vertically.

The above is the detailed content of How to prevent inline-block div from wrapping?. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!