标签:content 一点 通过 splay 尺寸 ems sky article transform
<article id="one"> <section id="section"></section> </article> <style> #one { position: relative; //此处不设置的话 会一直往上找 找到body width: 300px; height: 300px; background: lightskyblue; } #section { position: absolute; left: 50%; top: 50%; width: 100px; height: 100px; background: aliceblue; transform: translate(-50%, -50%); } </style>
<article id="one"> <section id="section"></section> </article> <style> #one { position: relative; width: 300px; height: 300px; background: lightskyblue; } #section { position: absolute; left: 50%; top: 50%; width: 100px; height: 100px; margin-left: -50px; // 需要通过 计算 但是兼容性好 margin-top: -50px; background: aliceblue; } </style>
<article id="one"> <section id="section"></section> </article> <style> #one { display: flex; width: 300px; height: 300px; background: lightskyblue; justify-content: center; align-items: center; } #section { width: 100px; height: 100px; background: aliceblue; } </style>
<article id="one"> <section id="section"></section> </article> <style> #one { display: grid; //和flex就一点不同 ???? width: 300px; height: 300px; background: lightskyblue; justify-content: center; align-items: center; } #section { width: 100px; height: 100px; background: aliceblue; } </style>
标签:content 一点 通过 splay 尺寸 ems sky article transform
原文地址:https://www.cnblogs.com/-constructor/p/12296203.html