Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<head>
<title>CSS Test: overflow: hidden and border-collapse: collapse</title>
<link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
<style type="text/css">
table { border-collapse: collapse; }
div { margin-top: 0.25em; }
td, div {
border-left: 2em solid;
overflow: hidden;
padding-left: 0.25em;
font: 4em sans-serif;
color: navy;
}
</style>
</head>
<body>
<p>There should be two identical blocks below, each with the word "Test" to the right.</p>
<table><tr><td>Test</td></tr></table>
<div>Test</div>
</body>
</html>