Open In App

How to prevent column break within an element?

Improve
Improve
Like Article
Like
Save
Share
Report

We can prevent column break within an element by using a CSS break-inside Property. The break-inside property in CSS is used to specify how the column breaks inside the element. Sometimes content of an element is stuck between the column. To prevent column break we should use the break-inside Property set to avoid.

Syntax:

column-break-inside:avoid;

Example: This Example uses to prevent the column break within an element.




<html>
  
<head>
    <style>
        .x {
            -moz-column-count: 3;
            column-count: 3;
            width: 30em;
        }
          
        .x li {
            -webkit-column-break-inside: avoid;
        }
    </style>
</head>
  
<body>
    <h1>Geeks For Geeks</h1>
    <div class='x'>
        <ul>
            <li>GeeksForGeeks</li>
            <li>Sudo Placement</li>
            <li>DataBase management System</li>
            <li>Operating System</li>
                <li>A computer science portal for geeks.</li>
                <li>Java Programming</li>
        </ul>
    </div>
</body>
  
</html>


Output:


Last Updated : 18 Apr, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads