让一个div水平居中
可以通过设置该div的margin-left和margin-right为auto,来实现水平居中。
示例代码如下:
<style>
.center {
width: 300px;
height: 200px;
background-color: #ccc;
margin-left: auto;
margin-right: auto;
}
</style>
<div class="center"></div>
其中,width和height是该div的宽度和高度,可以根据实际情况进行调整。background-color是该div的背景颜色,可以根据需要进行修改。
原文地址: http://www.cveoy.top/t/topic/bgdQ 著作权归作者所有。请勿转载和采集!