<html>
<head>
<title>Div example</title>
</head>
<body>
<style type="text/css">
.shadowbox {
width: 200px;
height: 100px;
background: #cccccc; /* grey */
margin-left: 50px;
}
.inner {
width: 200px;
height: 100px;
background: #ffffff;
border: 1px solid #000000;
color: #000000;
position: relative;
top: -8px;
left: -8px;
overflow: hidden;
}
.text {
padding: 10px;
}
</style>
<div class="shadowbox">
<div class="inner">
<div class="text">
Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
Ut et orci eget sapien sollicitudin aliquam.
Mauris tincidunt tincidunt leo.
</div>
</div>
</div>
</body>
</html>