scss 将一组CSS样式扩展到另一个元素

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scss 将一组CSS样式扩展到另一个元素相关的知识,希望对你有一定的参考价值。

// below block of CSS rules style a .panel class. It has a background-color, height, and border
.panel{
  background-color: red;
  height: 70px;
  border: 2px solid green;
}


// now you want another panel called big panel, with the same base properties but also needs a width
// and font-size
.big-panel{
  @extend .panel;
  width: 150px;
  font-size: 2em;
}

以上是关于scss 将一组CSS样式扩展到另一个元素的主要内容,如果未能解决你的问题,请参考以下文章

Angular 2 从 styles.scss 扩展样式

SCSS / CSS 最接近父选择器

SCSS--SCSS 常用属性合集

如何将一组复选框值从一个 JSP 页面传递到另一个

Webpack - scss/css 模块样式未在产品中应用

scss --- css的预处理器