Created
February 28, 2012 21:10
-
-
Save IllusionMH/1935170 to your computer and use it in GitHub Desktop.
Изображение с боковыми элементами
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
/* | |
* Изображение с боковыми элементами | |
*/ | |
#wrapper { | |
width: 600px; | |
margin: 10px auto; | |
background-color: transparent; | |
} | |
img { | |
display: block; | |
} | |
#bottom { | |
background-color: green; | |
margin: 0; | |
position: relative; | |
padding: 5px; | |
text-align: center; | |
} | |
#bottom:before { | |
content: ""; | |
display: block; | |
position: absolute; | |
bottom: 100%; | |
left: 0; | |
height:0; | |
width: 100px; | |
border-bottom: 20px solid green; | |
border-right: 40px solid transparent; | |
} | |
#bottom:after { | |
content: ""; | |
display: block; | |
position: absolute; | |
bottom: 100%; | |
right: 0; | |
height:0; | |
width: 100px; | |
border-bottom: 20px solid green; | |
border-left: 40px solid transparent; | |
} |
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
<div id="wrapper"> | |
<img src="http://placekitten.com/600/300" alt/> | |
<div id="bottom">Превед, котЭ!</div> | |
</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
{"view":"split","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment