1
我想基本上做的是有一個標題和容器始終居中,如果他們比屏幕小(體具有100%的高度)。如果內容和標題大於屏幕,則允許在其容器內滾動(注意標題不應滾動)。
我設法使它在Chrome中工作,但不是在IE10中。這是JSFiddle。
var p = $('p');
$('button').click(function(){
\t for(var i=0; i<30; i++){
$('.content').append(p.clone());
}
});
.screen{
border: 1px solid red;
padding: 3px;
height: 300px;
display: flex;
display: -ms-flexbox;
justify-content: center;
-ms-flex-pack: center;
flex-direction: column;
-ms-flex-direction: column;
}
.header{border: 1px solid blue; padding: 10px;}
.content{ border: 1px solid green; background: #aaa; overflow: auto;}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button>Add more content</button>
<div class="screen">
<div class="header">
Header
</div>
<div class="content">
<p>This is the content</p>
</div>
</div>
http://jsfiddle.net/w8zg8hr2/2/
感謝您的回答,但它在IE10中仍然不起作用。當我添加更多內容時,內容框只會越過屏幕框而不是像Chrome一樣滾動。 – ErwinGO
@ErwinGO你確定你正在測試IE10,而不是某些其他版本或其他文檔模式?這段代碼在IE10中的工作方式與Chrome/Firefox中的工作方式相同。 – TylerH
是的,我使用的是Windows7 IE10瀏覽器。 http://imgur.com/xp3wHjy – ErwinGO