Web.QHMIT
.com
Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
Run
<!doctype html> <title>Example</title> <style> .multicol { background: beige; padding: 10px; width: 360px; /* Safari and Chrome */ -webkit-column-count: 3; -webkit-column-gap: 50px; /* Firefox */ -moz-column-count: 3; -moz-column-gap: 50px; /* CSS3 */ column-count: 3; column-gap: 50px; } </style> <div class="multicol"> <h3>Column-gap Example</h3> <p>If I told you the world’s largest garbage dump was almost twice the size of continental United States would you believe me?</p> <p>Well, that’s how big the Great Pacific Garbage Patch is. The <em>Great Pacific Garbage Patch</em> is the collective name for two gigantic masses of garbage floating in the Pacific Ocean. The two masses are known as the <em>Western Pacific Garbage Patch</em> and the <em>Eastern Pacific Garbage Patch</em>.</p> </div>
Preview