简体   繁体   中英

Css sidebar height 100% in foundation

I'm using the grid system in the foundation framework , with a sidebar and content area. I want to extend the height of the sidebar navigation based on the content of main part ( small-10 ):

<div class="row">
    <div class="small-2 columns">
        <div id="side-nav">
            <ul>
                ...
            </ul>
        </div>
    </div>
    <div class="small-10 columns">
        @RenderBody()
    </div>
</div>

I've tried:

#side-nav
    {
        height:100%;
        background:#f0f0f0;
    }

如果您希望两列的高度相同,则在这种情况下,我仍将使用<table>

set css

   #side-nav
   {
    display:block;
   }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM