单击按钮后显示空白区域

时间:2016-06-21 12:06:49

标签: html css

我们在产品页面here中有评论标签,请使用CTRL + F搜索“评论”

enter image description here

一旦我们点击“成为第一个查看此产品”,就会显示这样,意味着完整的设计被破坏

enter image description here

conda install -c tlatorre pygame=1.9.2 

1 个答案:

答案 0 :(得分:1)

因为当您点击链接时,.main-container.col2-right-layout,默认为.col1-layout

您的.col-mainfloat:leftwidth:75%,因此您需要更改css,或者需要更改班级名称。

默认布局有css:

.col1-layout .col-main {
    float: none;
    padding: 0;
    width: auto;
}

所以你需要为其他页面添加css:

.review-product-list .col2-right-layout .col-main {
    float: none;
    padding: 0;
    width: auto;
}