.span-1 {
width: 90px;
}
.span-1 {
width: ?? %;
}
.span-1 {
width: 90px;
}
.span-1 {
width: 30%;
}
@column-width: 60;
@gutter-width: 20;
@columns: 12;
@total-width: 100%;
header { .column(12); }
article { .column(12); }
aside { .column(12); }
@media (min-width: 38em) {
article { .column(9); }
aside { .column(3); }
}
<link media="(min-width: 30em)" ... >
<link media="screen and (min-width: 30em)" ... >
@media (min-width: 30em) { ... }
@media screen and (min-width: 30em) { ... }
/* Additive, also know as small resolution first */
/* Smallest resolution styles get in here, outside the @media tags */
@media (min-width: 28em) {
/* styles for 28 em or higher in here (around the width of a large smartphone/tablet) */
}
@media (min-width: 48em) {
/* styles for 48 em or higher in here (around the width of a laptop (768px equivalent) */
}
/* Subtractive, also known as large resolution first */
/* Largest resolution styles get in here, outside the @media tags */
@media (max-width: 48em) {
/* styles for 48 em or lower in here (around the width of a laptop (768px equivalent) */
}
@media (max-width: 28em) {
/* styles for 28 em or lower in here (around the width of a large smartphone/tablet) */
}
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/base.css">
<link rel="stylesheet" media="not print" href="styles/mq.css">
</head>