Skip to content

Instantly share code, notes, and snippets.

@mbritton
Created March 31, 2015 17:44
Show Gist options
  • Save mbritton/aec35b3304c77d0c0f7b to your computer and use it in GitHub Desktop.
Save mbritton/aec35b3304c77d0c0f7b to your computer and use it in GitHub Desktop.
<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