column-count divides content into vertical columns inside its container.
Local CSS multi-column generator
أنشئ تخطيط CSS متعدد الأعمدة مع المعاينة المباشرة
اختر عدد الأعمدة، واضبط الفجوة والمقسم، وانسخ CSS الذي يتدفق النص الحقيقي عبر التخطيط.
* لا يتم رفع أي شيء. تتم المعالجة في علامة تبويب المتصفح هذه فقط.
جاهز
column-count: 3; column-gap: 32px; column-rule: 2px solid #1746d1;QUICK GUIDE
Columns change the reading flow
column-gap controls the space between columns; it does not change the content width.
column-rule is painted inside that gap, so a divider does not add layout width.
Multi-column layout is useful for editorial copy, compact lists, and print-like sections.
FAQ
CSS columns questions
How does text flow?
The browser fills one column and continues into the next, fragmenting the content inside the element.
Why does the rule sit inside the gap?
CSS paints column rules in the gap, so changing the gap gives the divider more breathing room.
Should I use Grid instead?
Use columns when text should flow naturally. Use Grid when each item needs an explicit row and column position.