Why is it not working properly on my mobile phone ?? | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 9

Why is it not working properly on my mobile phone ??

The container is vertically middle aligned on my pc with this code on my phone, it is not. I have Moto g6 with Android Oreo. https://code.sololearn.com/WR2UQCLE0Go7/?ref=app

1st Feb 2019, 3:30 AM
Arushi Singhania
Arushi Singhania - avatar
2 Respostas
+ 6
1. Quick solution Body { height: 100vh;} https://code.sololearn.com/WA1vZWTokkSl/?ref=app 2. Explanation Child top 50% is % of parent. So adjust parent height. Parent may not be body, sometimes div. 3. Note If you want to make a square, the units is vmin or vmax https://code.sololearn.com/WOOSPW73N3Cr/?ref=app 4. Supplement https://code.sololearn.com/W3gS00IGw160/?ref=app
1st Feb 2019, 3:51 AM
Gordon
Gordon - avatar
+ 2
this worked for me, adding -webkit-transform: translateY(-50%); to the div
8th Mar 2020, 4:54 AM
MCJEH
MCJEH - avatar