overflow hidden and visible
HTML
<div id="container">
<div id="content"></div>
</div>
CSS
#container{
margin:100px;
height:100px;
width:100px;
overflow-x:hidden;
overflow-y:visible;
border: 1px solid black;
}
#content{
height:200px;
width:200px;
background-color: blue;
}