Examples
Default styling
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.css-grid
Sets up a CSS grid container. View in Firefox inspector to see a grid overlay.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Markup
<div class="css-grid">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
<div>6</div>
<div>7</div>
<div>8</div>
<div>9</div>
<div>10</div>
<div>11</div>
<div>12</div>
<div>13</div>
<div>14</div>
<div>15</div>
</div>
Source:
frontpack/_common.scss
, line 21