Skip to content

Instantly share code, notes, and snippets.

@ihoka
Created August 22, 2012 12:37
Show Gist options
  • Save ihoka/3425177 to your computer and use it in GitHub Desktop.
Save ihoka/3425177 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>Webkit bug</title>
<style type="text/css">
#wrapper {
width: 200px;
}
table {
table-layout: fixed;
width: 100%;
border-collapse: separate;
}
td {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border: 1px solid #0E70B8;
white-space: nowrap;
padding: 0 4px;
}
.two {
width: 50px;
}
</style>
</head>
<body>
<div id="wrapper">
<table>
<tr>
<td class="one">
Column_number_one
</td>
<td class="two">
Two
</td>
</tr>
</table>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment