Check out this webpage: http://jsfiddle.net/aJNAw/1/
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
.wrapper
{
width:960px;
margin:0px auto;
overflow:hidden;
}
.page_header_billboard
{
background: #669933;
height: 376px;
width:960px;
}
.homebox
{
float:right;
clear:right;
position:relative;
right:20px;
top:36px;
overflow:hidden;
}
.homebox a
{
background:#ccc;
display:block;
width:200px;
height:100px;
text-align:center;
text-decoration:none;
opacity:0.6;
filter:Alpha(opacity=60);
}
.homebox a:hover
{
opacity:0.8;
filter:Alpha(opacity=80);
}
.homebox a span
{
display:inline-block;
color:#333;
line-height:27px;
}
.homebox_middle
{
margin:1px 0;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="homebox">
<a href="#" class="homebox_first"></a>
<a href="#" class="homebox_middle"></a>
<a href="#" class="homebox_last"></a>
</div>
<div class="page_header_billboard"></div>
</div>
</body>
</html>
The design is not displaying correctly in IE7, but it works fine on other browsers like Chrome and Firefox.
If anyone has a solution, please help out!