簡體   English   中英

如何將列從導航欄擴展到窗口底部?

[英]How to stretch column from nav-bar to bottom of window?

我正在嘗試從導航欄的底部到窗口的底部拉伸一列。

但是我遇到了2種不良情況。

  1. 列僅占用其內部元素的空間 在此處輸入圖片說明

  2. 列延伸了整個窗口的高度,但覆蓋了導航欄的一部分 在此處輸入圖片說明

的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>

正在使用引導程序和導軌上的紅寶石。

我是網頁設計的新手。 如果有人能指出我正確的方向,那將是驚人的嗎?

嘗試以下CSS( 此處為 jsfiddle示例):

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的順序並不重要。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM