我有一个问题一直困扰着我。应该很简单,我只是想不通。
基本上,在Chrome上,在更改浏览器大小时,页面http://loveireland.evolvedublin.com/tours/上创建的大多数div都会正确调整大小,但有一些div会相互重叠。在768px和991px之间(所以媒体查询)国家蜡像博物馆的帖子与都柏林动物园重叠。这种情况发生在页面下方,还有其他一些帖子,但页面的大部分内容都很好。
这不是Firefox的问题。
此外,当屏幕低于767px时,大多数div会相互垂直重叠。
我尝试在不同位置添加<div class="clearfix"></div>
。我尝试了col-**-4
的不同变体,这些变化没有帮助,我也尝试过修改花车,但似乎无法使用任何东西。
发布HTML的示例:
<div id="post-250" class="post-250 tours type-tours status-publish hentry col-lg-4 col-md-4 tour-thumb element-item" >
<div class="tour-frame">
<div class="tour-thumb-img">
<a href="http://loveireland.evolvedublin.com/tours/dublin-zoo/">
<img src="http://loveireland.evolvedublin.com/wp-content/uploads/2014/05/Dublin-Zoo2.jpg" class="img-responsive" alt=""/>
</a>
</div><!--tour-thumb-img-->
<div class="tour-thumb-text">
<!--TOUR TITLE-->
<h2 class="az za"><a href="http://loveireland.evolvedublin.com/tours/dublin-zoo/">Dublin Zoo</a></h2>
<!--TOUR EXCERPT-->
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed mattis semper lorem, in volutpat mi adipiscing se
<div class="thumb-footer">
<div class="tripadvisor">
<img src="http://loveireland.evolvedublin.com/wp-content/themes/loveireland/images/trip-advisor-icon.png" class="trip-icon" alt="Trip Advisor Icon" />
</div><!--trip-advisor-->
<div class="green-btn">
<a href="http://loveireland.evolvedublin.com/tours/dublin-zoo/">VIEW TOUR</a>
</div><!--green-btn-->
</div><!--thumb-footer-->
<div class="clearfix clear"></div>
</div><!--tour-thumb-text-->
</div><!--tour-frame-->
使用的CSS:
.tour-thumb{
margin: 0 0 30px 0;
}
.tour-frame{
border: 1px solid #e5e5e5;
background-color:#ffffff;
height:100%;
}
.tour-thumb-text{
padding: 0 10px 20px 10px;}
.tour-thumb a{
text-decoration:none;}
@media(max-width:767px){}
@media(min-width:768px){.tour-thumb{max-width: 357px !important; height: 390px;}}
@media(min-width:992px){.tour-thumb{max-width: 233px !important; height: 350px;}}
@media(min-width:1200px){.tour-thumb{max-width: 290px !important; height: 350px;}}
.tour-thumb h2{
font-size:12px;
font-weight:bold;
text-transform: uppercase;}
.tour-thumb h2 a{
color: #000000;
letter-spacing:2px;}
.tour-thumb h2 a:hover{
text-decoration:underline;}
.tour-thumb p{
font-size:14px;
letter-spacing:1px;}
.tour-thumb-img{
position:relative;}
.tour-thumb-price{
background: rgb(255,255,255);
background: rgba(255,255,255,0.9);
/*box-shadow: 0px 0px 10px #999999;*/
border: 1px solid #e5e5e5;
border-top: none;
position: absolute;
top:0;
right: 10px;
text-align:center;
padding: 10px;}
.tour-thumb-price h3{
font-size:18px;
font-weight:bold;
color:#8ac736;
padding: 0 0 0 0;
margin: 0 0 0 0;}
.tour-thumb-price p{
font-size:8px;
font-weight:bold;
padding: 0 0 0 0;
margin: 0 0 0 0;}
.thumb-footer{
display:block;
padding-top:10px;}
.tour-thumb .social{
display:inline-block;
float:left;
padding: 6px 0 6px 0;}
.tour-thumb .social img{
border:none;
margin-right:10px;}
.tour-thumb .social a{
color: #ffffff;}
.tour-thumb .green-btn{
float:right;
position:absolute;
right:20px;
/*margin-top:13px;*/}
.tour-thumb .tripadvisor{
/*margin-bottom:30px;*/
float:left;}
.tripadvisor img.trip-icon{
display:inline-block;
margin-top:4px;
float:left;}
.TA_cdsratingsonlynarrow{
display:inline-block;
float:left;}
.tour-detail .cdsROW.narrow{
text-align:left !important;
background-color:#fafafa; !important}
.tour-thumb .cdsROW.narrow{
text-align:left !important;
background-color:#ffffff; !important}
如上所述,这适用于Firefox,但是,当屏幕小于767px时,列实际上不会调整大小,这也是一个奇怪的问题在Chrome中不会发生的问题!
希望有人可以提供帮助,因为我很困难。
干杯
答案 0 :(得分:2)
在你发布的链接中,div添加位置有css内联:绝对值和左边和顶部值,删除它或尝试用以下方法覆盖它:
@media (min-width: 768px){
.tour-thumb {
position: relative !important;
left: auto !important;
top: auto !important;
float: left;
}
}
答案 1 :(得分:0)
在@Miktown的帮助下,我将以下内容添加到我的css中解决了这个问题:
@media (min-width: 768px) and (max-width: 991px){
.tour-thumb {
width:50% !important;
}
}
@media (max-width: 767px){
.tour-thumb {
width:96% !important;
}
}