【发布时间】:2015-03-18 12:27:48
【问题描述】:
我的问题是,在移动设备上,右侧 cont(白色背景)位于左侧 cont(紫色)下方。我尝试过使用clear:both,但还是没有解决。
我一直认为这个 CSS 是错误的:
.cont {
width: 1000px;
overflow: hidden
}
.cont_left {
width: 283px;
height: auto;
float: left;
vertical-align: central;
padding-top: 25px;
padding-left: 25px;
padding-right: 25px;
background-image: url(.//images/sidebar.png);
padding-bottom: 220px;
}
.cont_right {
width: 600px;
padding-left: 25px;
height: 100%;
float: left;
position:relative;
font: Arial;
font-size: 12px;
background: #ffffff;
padding-right: 25px;
}
现场直播:Website
问题图片:iOS Screenshot
【问题讨论】: