Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
337 views
in Technique[技术] by (71.8m points)

html - Get CSS Div to fill available height

I have a div with 2 elements.

<div id="master">
      <div id="follower"></div>
      <div id="decider"></div>
<div>

'master' div has the following CSS properties

height:auto;
width:auto;
margin:0;
padding:10px;   
display:block; 

The 'follower' div has the following CSS properties

position:relative;

vertical-align:middle;
height: auto;

display: inline-block;

margin-top: 0px;
margin-bottom:0px;

The 'decider' div decides how tall the 'master' div is. Is it possible for the 'follower' div to fill up as much vertical space in the 'master' div as possible?

I tried height: 100% but that just made the 'follower' div take up the whole screen (vertically)

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

The master should have

position: relative;

and then the follower should have

position: absolute;
top: 0;
bottom: 0;

That should work, except in IE6 (which an alarming amount of people are still using, but I would just disregard those and tell them to update their browser)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...