Rumah > Soal Jawab > teks badan
P粉4781887862023-09-06 14:48:14
Anda boleh menggunakan flex dan bukannya grid supaya anda boleh melakukan ini dengan mudah.
.outer { position: fixed; width: 100%; height: 100%; background: black; display: flex; justify-content: center; align-items: center; } .inner { padding: 30px; background: white; width: 100%; }
<div class="outer"> <div class="inner">Some content here</div> </div>
P粉0200855992023-09-06 12:43:41
Anda boleh menggunakan place-self
,而不是使用 place-content
pada item grid.
.outer { position: fixed; inset: 0; background: black; display: grid; } .inner { padding: 30px; background: white; width: 100%; max-width: 500px; place-self: center; }
<div class="outer"> <div class="inner">Some content here</div> </div>