<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.outer {
height: 200px;
padding: 0 50px 0 0;
background: #EEE;
}
.inner {
height: 100px;
background: #ffa800;
}
</style>
</head>
<body>
<div class="outer">
<div class="inner">
This is the inner div
</div>
</div>
</body>
</html>