Forum Moderators: not2easy
<div class="tab">
<div class="tab-button" style="cursor: pointer;">
<span>2011</span>
</div>
<div class="tab-content" style="width: 0px; opacity: 0;">
.... // content with a fixed width of 400px
</div>
</div>
.tab-content{width:0;margin-right:-400px;}
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>
<style>
.tab{float:left;background:red;}
</style>
</head>
<body>
<div class="tab">
<div class="tab-button" style="cursor: pointer;"> <span>2011</span> </div>
<div class="tab-content" style="width: 1px;">
<p style="width:400px"> .... // content with a fixed width of 400px</p>
</div>
</div>
</body>
</html>