我将此代码写在一个更少的文件中:
.page-cartPage .jc-banner .row-height > .col-xs-12:first-child {
display: none; }
但是我没有看到正确的行为。 这写得对吗?
答案 0 :(得分:1)
这是纯CSS,您可以做的是,尝试获取要显示的div的父div:无,然后像我的示例所示:
.myparent .col-xs-12:first-child{
display:none;
}
希望我能对您有所帮助。