我遇到了嵌套在另一个 div 标签中的扩展 div 标签的问题。在 IE 中,扩展的 div 标签会在需要时扩展到外部 div 标签之外。但是,在 Chrome 中,当内部 div 标签展开时,会导致外部 div 标签获得滚动条。我希望行为与 IE 中的行为相同 - 不出现滚动条,并且内容与页面的正文内容重叠(毕竟它只是购物车小部件)。
这是我的html页面中的代码。
<div id="mastheadcontainer"><!-- Begin mastheadontainer -->
<div id="masthead"><!-- Begin Masthead -->
<div id="mastheadcontent">
<div id="googlecart-widget" style="float:right;"></div>
</div>
</div><!-- End Masthead -->
这是我的CSS:
#mastheadcontainer {
width: 100%;
margin: 0 auto;
background-color: #dcb;
border-bottom:10px solid #0066CC;
/*margin-bottom:20px;*/}
#masthead {
text-align: right;
width: 960px;
margin: 0 auto;
overflow: auto;}
#mastheadcontent{
width:956px;
height:122px;
margin:0 auto;
/*background-image:url('../images/bk-masthead.jpg');*/
/*background-repeat:no-repeat;*/
background-color:#dcb;}
有什么建议可以让内部 div 标签在 chrome 中查看时扩展类似于 IE 中的行为?
谢谢迈克