Created
May 8, 2012 22:34
-
-
Save agrublev/2639984 to your computer and use it in GitHub Desktop.
Untitled
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
.area { | |
width: 300px; | |
height: 300px; | |
background: url(../images/abe-bg.png) no-repeat; | |
position: relative; | |
border:5px solid #000; | |
} | |
.bubble { | |
position: absolute; | |
left: 0px; | |
top: 0px; | |
width:300px; | |
height: 300px; | |
border:1px solid #000; | |
display: table; | |
} | |
.bubble p { | |
display: table-cell; | |
vertical-align: middle; | |
text-align: center; | |
} |
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="area"> | |
<div class="bubble"> | |
<p>To look best, text should really be centered inside this bubble both vertically and horizontally.</p> | |
</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
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment