SASS第六篇 混合

2020-10-28 15:36:43 浏览数 (1)

代码语言:javascript复制
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>
	</title>
	<style>
		/* SASS中混合定义: @mixin 混合名称{}; 或者 @mixin 混合名称(){};
    SASS中混合调用: @include 混合名称; 或者 @include 混合名称();*/
    /*@mixin center()
    {
    	position: absolute;
    	left: 50%;
    	top: 50%;
    	transform: translate(-50%,-50%);
    }
    .father
    {
    	width: 300px;
    	height: 300px;
    	background: red;
    	@include center();//混合的在这里显示的名称
    	.son
    	{
    		width: 200px;
    		height: 200px;
    		background: blue;
    		@include center();//混合的在这里显示的名称
    	}
    }*/
   /*编译后的css文件*/
   .father {
  width: 300px;
  height: 300px;
  background: red;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.father .son {
  width: 200px;
  height: 200px;
  background: blue;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
	</style>
</head>
<body>
	<div class="father"><div class="son"></div>	</div>
</body>
</html>

0 人点赞