Last active
October 9, 2018 13:31
-
-
Save yukulele/5292215 to your computer and use it in GitHub Desktop.
Untitled
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
h1 {color: #345; text-shadow: 1px 1px 2px #aaa; font-size:1.8em} | |
h2 {color: #567; text-shadow: 1px 1px 2px #aaa; font-size:1.1em} | |
h3 {margin-bottom: 0; color: #678; text-shadow: 1px 1px 2px #aaa; font-size:1em} | |
#sizer{ | |
resize:horizontal; | |
max-width:800px; | |
background:#ccc; | |
padding:40px; | |
border-radius:20px; | |
overflow:hidden; | |
} | |
.kiwi { | |
width: 100%; | |
outline: 1px solid #333; | |
background: #eee; | |
margin: 0; padding: 0; | |
display: flex; /* OK chrome 21 */ | |
justify-content: flex-start; | |
display: flex; | |
justify-content: flex-start; | |
flex-wrap:wrap; | |
} | |
.kiwi:nth-of-type(2) { | |
justify-content: flex-end; | |
} | |
.kiwi:nth-of-type(3) { | |
justify-content: center; | |
} | |
.kiwi:nth-of-type(4) { | |
justify-content: space-between; | |
} | |
.kiwi:nth-of-type(5) { | |
justify-content: space-around; | |
} | |
.kiwi:nth-of-type(6) { | |
justify-content: space-evenly; | |
} | |
li {color: #fff; padding: 10px; list-style: none; background: tomato} | |
li:nth-child(2) {background: orange} | |
li:nth-child(3) {background: #800000} | |
li:nth-child(4) {background: #FF3399} | |
li:nth-child(5) {background: #3399FF} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>Flexible Box Model</h1> | |
<h2>justify-content: ...</h2> | |
<h3>flex-start</h3> | |
<div id="sizer"> | |
<ul class="kiwi"> | |
<li>Salade</li> | |
<li>Tomate</li> | |
<li>Oignons</li> | |
<li>Choucroute</li> | |
<li>Picon bière</li> | |
</ul> | |
<h3>flex-end</h3> | |
<ul class="kiwi"> | |
<li>Salade</li> | |
<li>Tomate</li> | |
<li>Oignons</li> | |
<li>Choucroute</li> | |
<li>Picon bière</li> | |
</ul> | |
<h3>center</h3> | |
<ul class="kiwi"> | |
<li>Salade</li> | |
<li>Tomate</li> | |
<li>Oignons</li> | |
<li>Choucroute</li> | |
<li>Picon bière</li> | |
</ul> | |
<h3>space-between</h3> | |
<ul class="kiwi"> | |
<li>Salade</li> | |
<li>Tomate</li> | |
<li>Oignons</li> | |
<li>Choucroute</li> | |
<li>Picon bière</li> | |
</ul> | |
<h3>space-around</h3> | |
<ul class="kiwi"> | |
<li>Salade</li> | |
<li>Tomate</li> | |
<li>Oignons</li> | |
<li>Choucroute</li> | |
<li>Picon bière</li> | |
</ul> | |
<h3>space-evenly</h3> | |
<ul class="kiwi"> | |
<li>Salade</li> | |
<li>Tomate</li> | |
<li>Oignons</li> | |
<li>Choucroute</li> | |
<li>Picon bière</li> | |
</ul> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// alert('Hello world!'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"html"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment