简体   繁体   中英

Dynamic width with fixed column

I am trying to create a page that has a width that adjusts to the screen with a fixed width column on the right. So for example:

|                    |          |
|-------Content------|--Column--|
|                    |          |

       |             |          |
       |---Content---|--Column--|
       |             |          |

    |                |          |
    |-----Content----|--Column--|
    |                |          |

http://www.reddit.com/ would be a good example of this. Thanks

This blog is pretty useful for grabbing complex layouts.

ultimate-2-column-right-menu-pixels

this is essentially what reddit does: http://jsfiddle.net/pxfunc/rCG84/

the side div 1.) is above content in the html, 2.) is set to float:right; , and 3.) given a specific width ( width:300px )

<div id="side"></div>
<div id="content"></div>

the content div will adjust with the window size

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