Carlos Torres
Carlos Torres

Reputation: 419

Fixed div vertically and right aligned to another div

The nav div must be fixed vertically and sitting to the right side of container div.

Using position:fixed; and setting values left and top, you get the div to stay in the same place, but the left value depends since the parent div (page-container) gets centered.

<html>
<body>
<div id="page-container" style="width: 700px; height:1000px; margin-left: auto; margin-right: auto;background-color:moccasin;"> 

    <div class="content" style=" width: 340px; height:300px; float:left;background-color:mediumseagreen;"> 
        .content
    </div>

    <div class="nav" style="float:left;height: auto; width: 300px; display: block;background-color:lightblue;"> 
        .nav <br><br>This div must:<br> 
     1. be fixed vertically (if scrolling down, you should see me in the same place) <br>
     2. be aligned to the right side of <b>content</b>
    </div>
</div>
</body>
</html>

enter image description here

Upvotes: 0

Views: 1295

Answers (1)

thirtydot
thirtydot

Reputation: 228302

See: http://jsbin.com/afenip/2

/* new css */
.nav {
    position: fixed;
    margin-left: 340px; /* same as the width on .content */
}

Upvotes: 1

Related Questions