Search code examples
htmlcsspositionfixed

If I use "position:fixed;" can I have the position be on the right?


When using "position:fixed;" in my stylesheet, can I have the position also be on the right? Here's my code:

CSS

.buttons {
    margin-bottom: 30px;
    text-align: right;
    position:fixed;
}

HTML

<div id="main">
    <div class="container">
        <div class="buttons">
                <button class="nav-toggler toggle-slide-left">Menu</button>
            </div>
        </div>
    </div>

Solution

  • Yes, you just need to add 'right: 0;' to your .buttons CSS class.