CSS 2022

Makale İçerik Listesi

CSS Centering

  1. 2022'de bir grubu sayfa üzerinde center yapmanın en kolay yolu.
  2. HTML
    <div class="container">
       <input type="button" value="Kaydet" />
    </div>
  3. CSS 
    #container {
       display: grid;
       place-items: center;
    }
  4. Place-items hakkında daha detaylı inceleme Mozilla link - CSSTricks