我建立一个MDI WEB应用程序,并创建了一个窗口,通过制作article
元素,具有header
和section
内容。 因为它是一个MDI应用程序,该article
被设置为absolute
,所以它可以和其它窗口重叠。 我需要一个滚动条出现在内容部分,但不是在header
。
<article id="win3">
<header> … </header>
<section> … </section>
</article>
CSS:
article {
position: absolute;
min-width: 500px;
width: 918px;
margin: 0px;
padding: 0px;
overflow: hidden;
background-color: white;
border-style: ridge;
border-color: #ddd;
border-width: 4px;
}
article>section {
/* reduce diameter of rounded corner to match the inside curve of the border */
border-radius: 10px;
-moz-border-radius: 10px;
display: block;
overflow: auto;
border: none;
width: 100%;
background-color: white;
padding: 10px 10px 10px 20px;
min-height: 50px;
height: 100%;
}
它看起来像overflow: auto
在Firefox(22节)将被忽略,但滚动条会出现在Chrome浏览器。
我如何可靠地使滚动条需要在内容部分时,任何想法?