gpt4 book ai didi

css - -webkit-box-orient : vertical; in sass is not compiled in gulp

转载 作者:行者123 更新时间:2023-11-28 09:07:28 24 4
gpt4 key购买 nike

在sass文件中

h3 {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
line-height: 24px;
max-height: 24px;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
}

运行gulp任务后,获取css as

 .article-list.search .article-listings__item h3 {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
line-height: 24px;
max-height: 24px;
-webkit-line-clamp: 1;
}

样式 -webkit-box-orient: vertical; 在 css 文件中丢失。

我的sass编译gulp任务是

gulp.task('styles', function() {
return sass('src/assets/stylesheets/index.scss', { style: 'expanded' })
.pipe(autoprefixer('last 2 version'))
.pipe(gulp.dest('dist/styles'))
.pipe(rename({ suffix: '.min' }))
.pipe(cleanCSS())
.pipe(gulp.dest('dist/styles'))
.pipe(notify({ message: 'Styles task complete' }));
});

最佳答案

添加这行代码,它会正常工作:

/* autoprefixer: off */

-webkit-box-orient: vertical;

/* autoprefixer: on */

关于css - -webkit-box-orient : vertical; in sass is not compiled in gulp,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42967560/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com