我可以找到如何在固定高度的DIV宽度中获得100%的Textarea,但对于流体内容却一无所获。
这是我要找的东西:
html, body {
margin: 0;
padding: 0;
border:1px;
vertical-align:top;
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
font-size:14px;
color:#333;
height: 100%;
background: #F60;
}
#container {
width: 100%;
padding-bottom: 75px;
}
#wrap {min-height: 100%;}
#header {
height: 100px;
width: 100%;
background: #069;
}
#content {
height: 100%;
width: 100%;
position: relative;
}
.content textarea{
border: 1px solid red;
height: 100%;
}
#footer {
position: relative;
margin-top: -75px;
clear:both;
height: 75px;
width: 100%;
background: green;
}
<div id="wrap">
<div id="container">
<div id="header">header</div>
<div id="content">message<br />
<textarea>This textarea doesn't fill the content in height.</textarea>
</div>
</div>
</div>
<div id="footer">footer</div>
基本上,我需要用文本区域填充内容。
有可能吗? 预先谢谢你。
答案 0 :(得分:0)
百分比是相对的,这意味着它取决于父值。如果您没有可引用的值,那么它将不能很好地工作,假设包装器的高度为:100px,那么很明显100%是100px #cheers
答案 1 :(得分:0)
是的,有可能。