16 puan yazan xguru 2020-08-03 | 1 yorum | WhatsApp'ta paylaş
<p>Yalnızca tek satırla kullanışlı düzenler oluşturmayı sağlayan CSS özellikleri<br /> - Ortaya hizala! → place-items: center<br /> - Pancake ayrıştırma → flex: [grow] [shrink] [baseWidth]<br /> - Kenar çubuğu → grid-template-columns: minmax([min],[max])<br /> - Pancake yığma → grid-template-rows: auto 1fr auto <br /> - Klasik web → grid-template: auto 1fr auto / auto 1fr auto<br /> - 12 sütunlu grid → grid-template-columns: repeat(12, 1fr)<br /> - RAM (Repeat, Auto, MinMax) → grid-template-columns: repeat(auto-fit, minmax([base], 1fr))<br /> - Aralıkları koruma → justify-content: space-between<br /> - Stili koruma → width: clamp([min], [actual], [max])<br /> - Oranı koruma → aspect-ratio → [width] / [height]</p>

1 yorum

 
xguru 2020-08-03
<p>`place-items` ve pancake gerçekten çok kullanışlı. </p>