FWQ
为什么body设置flex后,子元素.outer无法上下左右居中?
body上でflexを設定しても、アイテムが上下左右中央に配置できない? html構造: <div class="outer"> <div class="inner">コンテンツ</div> </div> 登录后复制 .outerに対してflex配置を行うと、.innerは上下左右中央に配置されます。 .outer { display: flex; align-items: center; justify-content: center; width: 500px; height: 300px; border: 2px solid red; } .inner {…