Last active
August 29, 2015 14:05
-
-
Save vitkarpov/3814fef18a134c704577 to your computer and use it in GitHub Desktop.
Горизонтальные инлайн-блоки равной ширины
This file contains 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
.wrapper | |
{ | |
display: flex; | |
padding: 10px; | |
background: lightyellow; | |
font-size: 2.5em; | |
} | |
.wrapper-item | |
{ | |
flex:1; | |
display: inline-block; | |
margin: 10px; | |
padding: 10px; | |
background: white; | |
border: 1px dotted black; | |
} |
This file contains 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
<div class="wrapper"> | |
<div class="wrapper-item"> | |
Привет | |
</div> | |
<div class="wrapper-item"> | |
, | |
</div> | |
<div class="wrapper-item"> | |
мир! | |
</div> | |
</div> |
This file contains 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 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","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment