我無法讓孩子在Chrome中加載時自動繼承父div的高度。我創建了下面的例子,當我在jsfiddle中運行它時,它的作用是如何(在Chrome中),但不是當我從Visual Studio運行它時!子div不繼承父div高度
不同的是,在我的項目中,outter標籤位於_layout頁面中,而子內容位於RenderBody()調用中 - 不確定是否會產生變化?
.HtmlEditorBodyContainer {
margin-top: 50px;
background-color: blue;
width: 100%;
height: 80vh;
}
.NewsOutter {
background-color: green;
height: inherit;
width: inherit;
}
.NewsInput {
border: 5px solid red;
/*width: 75%;
height: 25%;*/
}
.NewsCreate {
}
.NewsSideBar {
}
_layout頁
<div class="HtmlEditorBodyContainer">
@RenderBody()
</div>
@RenderBody()內容
<div class="NewsOutter">
<img src="" id="image">
<div class="NewsInput">
</div>
<div class="NewsCreate">
</div>
<div class="NewsSideBar">
</div>
</div>
https://jsfiddle.net/rzLo9cc0/
那麼它使用Internet Explorer呢? –
什麼使用Internet Explorer? – JQuery