CSS代码
1 width:500px; height:300px; float:left; margin-left:50%; position:relative; left:-250px; background-color:#CCC;
代码解读
首先设置块元素的宽度和高度,这里宽度是必须的,高度可以不设,我设置了块的背景色,以给大家看效果。实现居中关键在于 margin-left:50%; position:relative; left:-250px;
设置margin-left:50%;后浮动元素左边正好位于文档中间,设置块相对定位position:relative;然后左移宽度的二分之一,即可实现元素居中。在这个实例中宽度500,left设置为-250px.
时间: 2024-10-17 10:56:38