1 Satır CSS ile Modern Düzenler
(web.dev)Yalnızca tek satırla kullanışlı düzenler oluşturmayı sağlayan CSS özellikleri
-
Ortaya hizala! → place-items: center
-
Pancake ayrıştırma → flex: [grow] [shrink] [baseWidth]
-
Kenar çubuğu → grid-template-columns: minmax([min],[max])
-
Pancake yığma → grid-template-rows: auto 1fr auto
-
Klasik web → grid-template: auto 1fr auto / auto 1fr auto
-
12 sütunlu grid → grid-template-columns: repeat(12, 1fr)
-
RAM (Repeat, Auto, MinMax) → grid-template-columns: repeat(auto-fit, minmax([base], 1fr))
-
Aralıkları koruma → justify-content: space-between
-
Stili koruma → width: clamp([min], [actual], [max])
-
Oranı koruma → aspect-ratio → [width] / [height]
1 yorum
place-itemsve pancake gerçekten çok kullanışlı.