Created
March 30, 2012 05:56
-
-
Save sthembi/2247082 to your computer and use it in GitHub Desktop.
example center blocks with display: inline block
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
/* example center blocks with display: inline block*/ | |
#gallery-container { | |
width:900px; | |
border:1px solid red; | |
height:105px; | |
margin:0 auto | |
} | |
.thumb { | |
width:220px; | |
height:100px; | |
background-color:gray; | |
border:1px solid green; | |
/* float:left; | |
*/ | |
display: inline-block; | |
} | |
.container1{ | |
width:960px; | |
min-height:200px; | |
border:1px solid blue | |
/*margin:0 auto; | |
} |
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="container1"> | |
<div id="gallery-container"> | |
<div class="thumb"></div> | |
<div class="thumb"></div> | |
<div class="thumb"></div> | |
<div class="thumb"></div> | |
</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":"separate","seethrough":"","prefixfree":"","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment