简体   繁体   中英

Right aligning div inline with a left aligned div?

I am experiencing difficulties when I am trying to Right align text links inside a div. I'm not sure what I am doing wrong. But this is the code for the div that is supposed be right aligned:

 <div class="menu">
     <a href="http://google.com" class="button">Home</a>
     <a href="http://google.com" class="button">Sign In</a>
     <a href="http://google.com" class="button">Join The Crowd!</a>
 </div>

And all the code is here: http://jsfiddle.net/GSfmf/1

I am wanting the buttons still vertically-centered in the header_div, but aligned to the right. And anything that I do doesn't move it.

Thanks, sorry for being foolish about the css.

Take out display table from your header div. Is there a reason your displaying it as a table?

Works fine when you take out display header

div.header_div{
    background-color: #ffffff;
    padding: 15px 50px 15px 50px;
}

在CSS样式表中,只需添加以下代码...认为它可以工作.menu {float:right;}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM