Created
March 31, 2015 17:44
-
-
Save mbritton/aec35b3304c77d0c0f7b 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
<html> | |
<head> | |
<title></title> | |
<style> | |
.tableContainer { | |
width:100%; | |
height:100%; | |
} | |
.rowContainer { | |
width:100%; | |
height:45px; | |
position:relative; | |
overflow:hidden; | |
border:1px solid green; | |
} | |
.rowContainer .rowCell { | |
width:200px; | |
height:100%; | |
border:1px solid #ff6666; | |
float:left; | |
text-align: center; | |
overflow: inherit; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="tableContainer"> | |
<div class="rowContainer"> | |
<div class="rowCell"> | |
FOO | |
</div> | |
<div class="rowCell"> | |
BAR | |
</div> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment