Search
 
SCRIPT & CODE EXAMPLE
 

CSS

framework grille scss

/* On définit sa grille */
$columns : 12;

/* Gutters signifie Gouttière en anglais */
$gutters : 30px;

%box {

/* le comportement de vos boites */
float:left;

background: red;

padding: $gutters;

}

@for $i from 1 through $columns {

box-#{$i} {

@extend %box;

width : $i / $columns * 100%;

}

}
Comment

framework grille scss

$columns: 12;

$mobile: “(max-width: 480px)”

@media #{$mobile} {

@for $i from 1 through $columns {

box-#{$i} {

width : 100%;

}

}

}
Comment

PREVIOUS NEXT
Code Example
Css :: Selection Handler css 
Css :: how to scroll only in one direction in css 
Css :: css infinite horizontal scroll with keyframe? 
Css :: font face roboto css 
Css :: image rendering values css 
Css :: twig language name 
Css :: bast css 3d images gallery code 
Css :: cliping setting 
Css :: position absolute prevent overflow 
Css :: change d in path svg css 
Css :: Table Print Cut off right side 
Css :: Create 2 separate CSS rules for the code below: 
Css :: new margin property css 2021 
Css :: css widows 
Css :: vue center components in body 
Css :: css 2 images side by side to stack 
Css :: Remove Title spacing 
Css :: how to affect a deffernt element in css 
Css :: cop pics css 
Css :: how to center topnav bar in html 
Css :: easyui datagrid header font size 
Css :: how to get rid of underline for links in css 
Css :: on active tab background color with slide animation 
Css :: IE support stackover flow css 
Css :: media query in css 
Css :: css media query between two width 
Css :: Task #2: Set a linear gradient background for the div element, going from the top left to the bottom right, transitioning from "white" to "green" 
Typescript :: Error: Uncaught (in promise): NullInjectorError: R3InjectorError(AppModule)[HttpClient - HttpClient - HttpClient]: 
Typescript :: npm uninstall all 
Typescript :: axis limits matlab 
ADD CONTENT
Topic
Content
Source link
Name
8+9 =