Renk ve Tasarım
CSS Izgara Düzeni Oluşturucu
Drag track sizers, copy the CSS Grid.
.grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 80px 80px;
gap: 12px;
}Editörün notu
Understanding · The first real layout system the web has had.
Bu ayrıntılı bölüm şu anda yalnızca İngilizce olarak sunulmaktadır. Yukarıdaki dönüştürme aracı sizin dilinizde çalışır; uzun açıklayıcı yazı henüz çevrilmemiştir.
Sıkça sorulan sorular
Quick answers.
›What browser support can I expect?
CSS Grid is supported by all modern browsers (Chrome, Firefox, Safari, and Edge). This generator produces standard syntax that is compatible without the need for complex polyfills.
›What are fractional units (fr)?
The `fr` unit represents a fraction of the available space in the grid container. Using `1fr` for multiple columns ensures they share the remaining space equally after fixed-width tracks are accounted for.
›Is my layout data saved to a server?
No. The generator runs completely in your browser and your layout configuration never leaves your machine. You can copy the code directly to your clipboard for use in your project.
›What is the difference between tracks and gaps?
Tracks are the actual columns and rows that hold content, while gaps (gutters) define the empty space between those tracks. You can adjust the `grid-gap` to control spacing without affecting track sizing.
İnsanlar ayrıca şunları arar
İlgili araçlar
More in this room.
- CSS Birimleri Dönüştürücüpx, rem, em, pt ve daha fazlasını dönüştürün.
- En Boy Oranı HesaplayıcıOranları hesaplayın ve boyutları yeniden boyutlandırın.
- Font Eşleştirme ÖnericisiHerhangi bir Google veya sistem fontu için özenle seçilmiş eşleştirmeler.
- Renk Dönüştürücü (HEX/RGB/HSL/OKLCH)HEX, RGB, HSL ve modern OKLCH — anında.
- Kontrast Denetleyicisi (WCAG)WCAG AA / AAA kontrastını kontrol edin — geçti veya kaldı.
- Gradyan OluşturucuDoğrusal, radyal ve konik CSS gradyanları.