gpt4 book ai didi

html - 如何将列从导航栏拉伸(stretch)到窗口底部?

转载 作者:行者123 更新时间:2023-11-28 07:03:01 24 4
gpt4 key购买 nike

我正在尝试将导航栏底部的列拉伸(stretch)到窗口底部。

但我遇到了 2 种不良情况。

  1. 列只占用与其内部元素一样多的空间 enter image description here

  2. 列延伸了整个窗口的高度但覆盖了部分导航栏 enter image description here

CSS

@media (min-width: 768px){
#left {
position: absolute;
top: 0;
bottom: 0;
left: 0;
width: 25%;
overflow-y: scroll;
}

#right {
position: absolute;
top: 0;
bottom: 0;
right: 0;
width: 75%;
}

查看/用户/显示

<div class="container">
<div class="row">
<div class="tabbable">
<ul id="left" class="nav nav-pills nav-stacked col-md-3" style="padding-right: 50px;">
<%= render 'lists/form' %>
<% @lists.each do |list| %>
<%= content_tag :li do %>
<a href="#list-<%=list.id %>" data-toggle="tab"><%= list.name %></a>
<% end %>
<% end %>
</ul>

<div id="right" class="tab-content col-md-9">
</div>
</div>
</div>

Views/Layouts/Application.html.erb

<body>

<nav class="navbar navbar-inverse" style="margin: 0">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
</button>
<% if current_user %>
<%= link_to "App Name", @user, class: 'navbar-brand' %>
<% else %>
<%= link_to "App Name", root_path, class: 'navbar-brand' %>
<% end %>
</div>

<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
</ul>
</div>
</div>
</nav>

</div>
<% end %>

<%= yield %>

</body>

正在使用 Bootstrap 和 ruby​​ on rails。

我是网页设计新手。如果有人能为我指明正确的方向,那就太棒了?

最佳答案

试试这个 css(jsfiddle 示例 here):

html, body, .container, .row, .tabbable{height:100%}
#left {
position: relative;
top: 0;
bottom: 0;
left: 0;
width: 25%;
overflow-y: scroll;
height: calc(100% - 20px);
}

#right {
position: relative;
top: 0;
bottom: 0;
right: 0;
width: 100%;
height: 20px;
}

,其中 #right div 应该在 #left div 之前。

如果你想将它们定位在absolute,

 html, body, .container, .row, .tabbable{height:100%}
#left {
position: absolute;
top: 0;
bottom: 0;
left: 0;
width: 25%;
overflow-y: scroll;
height: calc(100% - 20px);
margin-top:20px;//height of #right
}

#right {
position: absolute;
top: 0;
bottom: 0;
right: 0;
width: 100%;
height: 20px;
}

,html div 的顺序并不重要。

关于html - 如何将列从导航栏拉伸(stretch)到窗口底部?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33119588/

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