min icon indicating copy to clipboard operation
min copied to clipboard

Right aligned menus

Open mguinness opened this issue 8 years ago • 0 comments

I'm trying to emulate navbar-right class in bootstrap to right align some menu items. The following appears to work, but is there a better way to do this?

@media screen and (min-width: 500px) {
  .nav-right {
    float: right;
    padding-top: 7px;
  }
}
<span class="nav-right">
  <a href="#">Register</a>
  <a href="#">Log in</a>
</span>

mguinness avatar Aug 20 '16 07:08 mguinness