PashPP,
Ещё вариант ...
<!DOCTYPE HTML>
<head>
<style>
#first {
width: 150px;
height: 200px;
float: left;
background-color: green;
}
#second {
margin-left: 70%;
width: 30%;
height: 200px;
background-color: red;
}
</style>
</head>
<body>
<div style="width: 300px; height: 300px; background-color: silver; margin-bottom: 10px">
<div id="first">1</div>
<div id="second">2</div>
</div>
<div style="width: 200px; height: 300px; background-color: silver;">
<div id="first">1</div>
<div id="second">2</div>
</div>
</body>