I\'m developing a site with a blog section. I need this section to have a fixed height. In order to be able to see all the posts in the blog I added an overflow: aut
A possible answer from HTML5 Application Development Fundamentals
#content{
height: 200px;
region-overflow:auto;
overflow:visible;
border 1px solid red;
}
Now this is gearing more towards responsive design. Add -webkit- before overflow might help since it is a chrome issue only. Assuming it is CSS3.
#content {
height: 200px;
overflow: auto;
-webkit-overflow: auto;
border: 1px solid red;
}