<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#first {
width: 200px;
height: 100px;
background-color: blue;
}
#second {
width: 100px;
height: 50px;
background-color: red;
}
</style>
</head>
<body>
<div id="first">
<div id="second">
<div id="third">Nested Div's</div>
</div>
</div>
</body>
</html>