Code:
#right_panel{
width:200px;
float:right;
margin:10px 40px 0 0;
padding-left:25px;
border-left:1px dashed #ccc;
}
#forgot{
position:relative;
left:200px;
}
<p><a href="password.php" id="forgot">forgot my password</a></p>
.submit{
position:relative;
left:200px;
width:230px;
height:20px;
cursor:pointer;
font-weight:bold;
padding-bottom:2px;
}
<p><input type="submit" value="Login »" class="submit" /></p>
Right panel width is 200px, yet you put stuff with a width of 230px inside that, with a left margin of 200px, for a total of 530px?
|