。這是我想要的東西 -
1格應該有最低高度100%,使其邊框顯示全屏
2.應該在中間水平。
3.它應該與內部的內容拉伸。
文本失控的div容器
現在的問題是這些所有3件事情正在工作,但在最後「你好」正在從容器中走出。我已經使用清晰的浮動。但它不起作用。 幫我拿出一些CSS技巧。或者指出我是否做錯了什麼。
這裏的jsfiddle鏈接 - http://jsfiddle.net/2U5hh/
這是我的HTML代碼 -
<body>
<table class="clearfix">
<tr height="15%">
<td id="image_td">
<img src="img/smthing.png" alt="E-Learn" />
</td>
</tr>
<tr height="85%">
<td>
<div id="td_content_div">
<p>hello</p><p>hello</p><p>hello</p><p>hello</p>
<p>hello</p><p>hello</p><p>hello</p><p>hello</p>
<p>hello</p><p>hello</p><p>hello</p><p>hello</p>
<p>hello</p><p>hello</p><p>hello</p><p>hello</p>
</div>
</td>
</tr>
</table>
</body>
,這裏是CSS代碼 -
html, body
{
height:100%;
width:100%;
margin:0 0 0 0;
}
.clearfix {
max-width: 500px;
margin: 2% auto;
border-radius:25px;
padding:2% 2% 5% 2%;
height:96%;
width:96%;
box-shadow: 0 0 3px rgba(83, 39, 134, 1);
}
#image_td{
float: right;
margin-right: 5%;
margin-top: 2%;
}
#image_td img{
max-width:96%;
height:auto;
}
#td_content_div {
position:relative;
border-radius:25px;
box-shadow: 0 0 3px rgba(83, 39, 134, 1);
width:94%;
height: 94%;
margin:3% 3% 1% 3%;
vertical-align: middle;
}
你想要這樣的東西嗎? http://jsfiddle.net/Pzz22/ – 2014-03-05 21:03:42
是的,我想要裏面的文字。但是當我們在裏面放置一些更多的「p」標籤時,它會變得更外面。 – riskPlayGround
http://jsfiddle.net/Pzz22/2/而這個? – 2014-03-05 21:10:09