markdown Sass:添加背景

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown Sass:添加背景相关的知识,希望对你有一定的参考价值。

// declare new mixin called background
@mixin background {
  // check if variable is true
  @if $show-home-img {
	&#bg-img {
	  background: $home-image;
	  background-attachment: fixed;
	  background-size: cover;
	  
	  // use CSS pseudo-element to add overlay
	  &:after {
	  content: '';
		position: absolute;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		z-index: -1;
		background: rgba($primary-color, $background-opacity);
	  }
	}
  }
}

以上是关于markdown Sass:添加背景的主要内容,如果未能解决你的问题,请参考以下文章

SASS:获取现有背景字符串的值并添加到它?

SASS 彩虹背景简化

markdown [SASS功能] #sass #css

markdown [SASS cheatsheet] #css #sass

Sass中使用@each循环

markdown Sass arquitecture