Skip to content

Instantly share code, notes, and snippets.

@pgherveou
Created March 21, 2012 20:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pgherveou/2152520 to your computer and use it in GitHub Desktop.
Save pgherveou/2152520 to your computer and use it in GitHub Desktop.
Untitled
.row {
border: 1px solid black;
display: table;
width: 100%;
}
.cell {
display: table-cell;
background-color: red;
vertical-align: middle;
}
.cell-2 {
font-size: 28px;
background: green;
width: 50px;
}
.cell-1 {
font-size: 18px;
background: lightblue;
}
<div class="table">
<div class="row">
<div class="cell cell-1">cell 1</div>
<div class="cell cell-2">cell 2</div>
<div class="cell cell-1">cell 3</div>
</div>
</div>
{"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