在navbar顶部的Twitter-Bootstrap-2标志图像

前端之家收集整理的这篇文章主要介绍了在navbar顶部的Twitter-Bootstrap-2标志图像前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有人可以建议我如何在导航栏的顶部放置标志图像?
我的标记
<body>
    <a href="index.html"> <img src="images/57x57x300.jpg"></a>
     <div class="navbar navbar-fixed-top">
       <div class="navbar-inner">
         <div class="container">

它不工作,因为57x57x300.jpg显示在导航栏下面。

解决方法

您还必须将“navbar-brand”类添加到您的图像容器中,还必须将其包含在.navbar-inner容器中,如下所示:
<div class="navbar navbar-fixed-top">
   <div class="navbar-inner">
     <div class="container">
        <a class="navbar-brand" href="index.html"> <img src="images/57x57x300.jpg"></a>
     </div>
   </div>
 </div>
原文链接:https://www.f2er.com/bootstrap/234877.html

猜你在找的Bootstrap相关文章