猿问

css 控制 div 始终水平垂直居中,这个div大小还不同

css 控制加了一个统一类名的div,想让他水平垂直居中显示,但是这个div大小不一样,css就不能写固定,其他同学有什么好的思路没

蓝山帝景
浏览 393回答 1
1回答

PIPIONE

flex布局吧<!DOCTYPE html><html><head><meta charset="utf-8">&nbsp;<title></title><style>&nbsp;#main{&nbsp; &nbsp; width:220px;&nbsp; &nbsp; height:300px;&nbsp; &nbsp; border:1px solid black;&nbsp; &nbsp; display:flex;&nbsp; &nbsp; justify-content:center;&nbsp; &nbsp; align-items:center;}#main div{&nbsp; &nbsp;&nbsp;}</style></head><body><div id="main">&nbsp; <div style="background-color:coral;">红色</div></div></body></html>
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答