scss SASS媒体查询
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scss SASS媒体查询相关的知识,希望对你有一定的参考价值。
$desktop: 1024px;
@mixin desktop {
@media ( min-width: #{$desktop} ) {
@content;
}
}
// OR //
$mobile: 960px;
@mixin mobile {
@media ( max-width: #{$mobile} ) {
@content;
}
}
/* Then go inside specific element and define responsive changes. */
// Example:
#main {
float: left;
width: 80%;
@include mobile {
float: none;
margin: 0px auto;
width: 100%;}
}
#aside {
width: 20%;
@include mobile {
margin: 0px auto;
width: 100%;}
}
$desktop: 769px;
$tablet: 361px; /*just use this for reference of numbers*/
$tablet-max: 768px;
$mobile: 360px;
@mixin tablet {
@media (min-width: #{$tablet}) and (max-width: 768px) {
@content;}
}
@mixin mobile {
@media (max-width: #{$mobile}) {
@content;}
}
html {
box-sizing: border-box;
@include tablet {
font-size: 13px;
}
@include mobile {
font-size: 11px;
}
}
以上是关于scss SASS媒体查询的主要内容,如果未能解决你的问题,请参考以下文章
scss SASS媒体查询
scss 用于媒体查询的Sass mixins
scss Bootstrap Sass媒体查询变量
scss Sass媒体查询
scss Bootstrap Sass媒体查询变量
scss Bootstrap Sass媒体查询变量