- 面向网络工具箱:垂直;在sass中不是在gulp中编译

mhd8tkvw  于 2022-12-08  发布在  Gulp
关注(0)|答案(2)|浏览(136)

在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任务后,以

.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;
}

css文件中缺少样式-webkit-box-orient: vertical;
我的sass编译任务是

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' }));
});
eaf3rand

eaf3rand1#

添加下面这行代码,它将正常工作:

/* autoprefixer: off */

-webkit-box-orient: vertical;

/* autoprefixer: on */
8qgya5xd

8qgya5xd2#

看这是Github上的问题。
这样的配置自动前缀。希望它能帮助你。

autoprefixer({
  remove: false,
  browsers: ['last 2 versions']
})

相关问题