1
我有一些簡單的html和css(見下文),它顯示了Div標籤內的Flex應用程序。在大多數瀏覽器(ie8,chrome,FF)中,該對象沒有邊框或垂直滾動條。在ie9中,顯示了滾動條和3D蝕刻邊框。我想刪除這些,我嘗試了各種邊框樣式,但似乎沒有任何幫助。有沒有人有這個解決方案?這僅僅是ie9的一個已知問題嗎?ie9滾動條和刻蝕邊框始終顯示在對象上
我對Html,CSS,JavaScript等有點新,我不得不說,IE瀏覽器很痛苦!
#mapLocation
{
position: absolute;
top: 131px;
left:0;
z-index: 0;
bottom: 120px;
width: 100%;
z-index: 2;
border-style: none;
}
#mapObject{
position:relative;
width: 100%;
height: 100%;
z-index: 2;
border-style: none;
}
</style>
<div id="mapLocation" >
<object id="mapObject" type="text/html" data="otherFile.html"></object>
</div>
感謝您的幫助,
Ggilmann