With CSS columns

Developer
Size
2,569 Kb
Views
30,360

How do I make an with css columns?

This has bad reflow behavior when you expand anything; the columns always rebalance themselves, and there doesn't seem to be any way to stop that.. What is a with css columns? How do you make a with css columns? This script and codes were developed by 75th on 25 August 2022, Thursday.

With CSS columns Previews

With CSS columns - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>With CSS columns</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <ul> <li>First item <div>Here is the description of the first item. This description is extra-super-long so you can see the undesirable reflow behavior in non-flexbox methods. Looks like I need an extra sentence — a really, really, <em>really</em> long one, in fact — to really screw up the CSS columns version.</div></li> <li>Second item <div>Here is the description of the second item.</div></li> <li>Third item <div>Here is the description of the third item.</div></li> <li>Fourth item <div>Here is the description of the fourth item.</div></li> <li>Fifth item <div>Here is the description of the fifth item.</div></li> <li>Sixth item <div>Here is the description of the sixth item.</div></li> <li>Seventh item <div>Here is the description of the seventh item.</div></li> <li>Eighth item <div>Here is the description of the eighth item.</div></li> <li>Ninth item <div>Here is the description of the ninth item.</div></li> <li>Tenth item <div>Here is the description of the tenth item.</div></li>
</ul> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

With CSS columns - Script Codes CSS Codes

* { box-sizing: border-box;
}
ul,
li { display: block; list-style: none; margin: 0px; padding: 0px;
}
ul { -webkit-columns: 2; -moz-columns: 2; columns: 2;
}
li { padding: 10px; margin: 10px 1%; background: #f4f4f4; cursor: pointer; -webkit-column-break-inside: avoid; page-break-inside: avoid; break-inside: avoid;
}
li:first-child { margin-top: 0px;
}
li div { font-style: italic;
}

With CSS columns - Script Codes JS Codes

$(document).ready(function() { $('li div').hide(); $('li').on('click', function() { $(this).children().slideToggle(); });
});
With CSS columns - Script Codes
With CSS columns - Script Codes
Home Page Home
Developer 75th
Username 75th
Uploaded August 25, 2022
Rating 3
Size 2,569 Kb
Views 30,360
Do you need developer help for With CSS columns?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

75th (75th) Script Codes
Create amazing art & images with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!