为了账号安全,请及时绑定邮箱和手机立即绑定

Sass

标签:
CSS3 Sass/Less

%float-left{
	float:left;
	padding:0 15px;
	position: relative;
}
.clearfix{
	&::before,&::after{
		display: table;
		content: '';
	}
	&::after{
		clear: both;
	}
}
.container{
	width:100%;
	margin:0 auto;
	padding: 0 15px;
	@extend .clearfix;
}
.row{
	@extend .clearfix;
	margin: 0 -15px;
}

@for $i from 1 through 12{
	.col-#{$i},.col-sm-#{$i},.col-md-#{$i},.col-lg-#{$i},.col-xl-#{$i}{
		@extend %float-left;
	}
	.col-#{$i}{
		width:percentage($i/12);
	}
}
@for $i from 0 through 12{
	.col-offset-#{$i}{
		margin-left: percentage($i/12);
	}
	.col-push-#{$i}{
		left:percentage($i/12);
	}
	.col-pull-#{$i}{
		right:percentage($i/12);
	}
}
.d-none{
	display: none !important;
}
.d-block{
	display: block !important;
}
@mixin grid($screen,$minWidth,$width){
	@media (min-width:$minWidth){
		.container{
			width:$width;
		}
		@for $i from 1 through 12{
			.col-#{$screen}-#{$i}{
				width:percentage($i/12);
			}	
		}
		@for $i from 0 through 12{
			.col-#{$screen}-offset-#{$i}{
				margin-left: percentage($i/12);
			}
			.col-#{$screen}-push-#{$i}{
				left:percentage($i/12);
			}
			.col-#{$screen}-pull-#{$i}{
				right:percentage($i/12);
			}
		}
		.d-#{$screen}-none{
			display: none !important;
		}
		.d-#{$screen}-block{
			display: block !important;
		}
	}
}
@include grid(sm,576px,540px);
@include grid(md,768px,720px);
@include grid(lg,992px,960px);
@include grid(xl,1200px,1140px);

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
CG影视动画师
手记
粉丝
2
获赞与收藏
9

关注作者,订阅最新文章

阅读免费教程

  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消