Faced a problem with layout.
It is necessary to fix the <div class="andrew_top_nav_absolute"> , so that when changing the width of the browser, it remains in place <div class="andrew_top_nav_absolute"> to play with left: right: did not work.
Tell me which way to go?
.andrew_top_nav { height: 35px; width: 100%; margin: 0 auto; position: relative; background: red; } .andrew_top_nav_absolute { position: absolute; height: 35px; width: 1356px; background: green; } <div class="andrew_top_nav"> <div class="andrew_top_nav_absolute"> <a href="">Link1</a> <a href="">Link2</a> <a href="">Link3</a> </div> </div>