Adding href to one button in btn-toolbar and maintaining alignment

后端 未结 3 1499
迷失自我
迷失自我 2021-02-19 06:05

I want to add an href to the Contact Sales button in the following code. If I wrap the button in an anchor tag the button moves down out of alignment with the other button (it

相关标签:
3条回答
  • 2021-02-19 06:29

    Keep with your code and just wrap with <p> rather than <div>:

    <p class="text-center">
        <a href="office/" class="btn btn-success">Get Started...</a>
    </p>
    
    0 讨论(0)
  • 2021-02-19 06:41

    You may check this Fiddle

    It's just wrapping button in anchor tags..

    0 讨论(0)
  • 2021-02-19 06:44

    In Bootstrap, anchors with a "btn" class are styled identically to buttons. Therefore, you can actually change the 'Contact Sales' button into an anchor while preserving the button style.

    Untested (since jsFiddles don't seem to elicit the problem you're having):

         <div id="headerbtn" class="span6">
            <div class="btn-toolbar pull-right">
                <div class="btn-group">
                    <a href="#" class="btn btn-primary">
                        Contact Sales
                    </a>
                </div>
                <div class="btn-group">
                    <button class="btn btn-primary dropdown-toggle" data-toggle="dropdown">
                    <i class="icon-user icon-white"></i>
                    Sign In
                    <span class="caret"></span>
                    </button>
                    <ul class="dropdown-menu">
                        <li>
                            <a href="#">Profile</a>
                        </li>
                        <li class="divider"></li>
                        <li>
                            <a href="#">Sign Out</a>
                        </li>
                    </ul>
                </div>
            </div>
        </div>
    

    I also removed the dropdown-toggle class from the anchor, because I'm guessing you don't want it to be both a link and a dropdown toggle.

    0 讨论(0)
提交回复
热议问题