16 puan yazan xguru 2020-08-03 | 1 yorum | WhatsApp'ta paylaş

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])

    Reklam
  • 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))

    Reklam
  • Aralıkları koruma → justify-content: space-between

  • Stili koruma → width: clamp([min], [actual], [max])

  • Oranı koruma → aspect-ratio → [width] / [height]

1 yorum

 
xguru 2020-08-03

place-items ve pancake gerçekten çok kullanışlı.