更少没有找到第一个子选择器

时间:2018-07-02 14:07:35

标签: css-selectors less

我将此代码写在一个更少的文件中:

.page-cartPage .jc-banner .row-height > .col-xs-12:first-child {
display: none; }

但是我没有看到正确的行为。 这写得对吗?

1 个答案:

答案 0 :(得分:1)

这是纯CSS,您可以做的是,尝试获取要显示的div的父div:无,然后像我的示例所示:

.myparent .col-xs-12:first-child{
     display:none;
}

希望我能对您有所帮助。