gpt4 book ai didi

html - Bootstrap 图像调整大小

转载 作者:行者123 更新时间:2023-11-28 10:13:33 24 4
gpt4 key购买 nike

好的,我正在使用 Bootstrap 创建一个网站,但遇到了一个问题。我在 Logo 的导航栏中放置了一个图像,然后我去调整浏览器的大小以强制移动布局。当我到达图像应该开始调整大小的位置时,它在调整大小之前下降到菜单切换的下方(或上方)。

我什至尝试过向它添加 .img-responsive 但这没有帮助。

这是我正在谈论的图像:

这是我的代码:

<div class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#"><img src="http://lorempixel.com/300/40/" class="img-responsive" alt="LOGO"></a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>

<div class="container">

<div class="text-center">
<h1>Bootstrap starter template</h1>
<p class="lead">Use this document as a way to quickly start any new project.<br> All you get is this text and a mostly barebones HTML document.</p>
</div>

</div><!-- /.container -->

任何帮助将不胜感激谢谢。

最佳答案

有几种方法可以解决这个问题。您可以使用媒体查询将 max-width 或百分比 width 设置为 .navbar-brand

最清晰的解决方案可能是使用 CSS3 calc 使其占用 100% 宽度减去菜单按钮占用的空间(22px 宽度 + 20px 填充 + 2px 边框 + 15px 边距= 59px 总空间)。因为你的图像在 390px 屏幕宽度下被下推,所以你的媒体查询应该是:

@media (max-width: 390px) {
.navbar-brand {
width: calc(100% - 59px);
}
}

检查 JSFiddle with the result .

我的 other answer也可能对您有所帮助。

关于html - Bootstrap 图像调整大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24298450/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com