Tks, Nealrm and an0n.
But...
Scroll occurs only vertically.
How to scroll horizontally?
CSS
Code:
.content_h05_v02 {
float:left;
width:970px;
height:451px;
}
.content_h05_v02_h01 {
float:left;
width:970px;
height:260px;
margin-top:101px;
overflow:hidden;
}
.content_h05_v02_h01_h01 {
float:left;
width:970px;
height:260px;
overflow-y:hidden;
overflow-x:scroll;
}
.content_h05_v02_h01_h01_media {
float:left;
width:180px;
height:120px;
position:relative;
margin:5px;
}
HTML
Code:
<div class="content_h05_v02">
<div class="content_h05_v02_h01">
<div class="content_h05_v02_h01_h01">
<div class="content_h05_v02_h01_h01_media">
...
...
...
...
...
...
...
...
</div><!-- content_h05_v02_h01_h01_media -->
</div><!-- content_h05_v02_h01_h01 -->
</div><!-- content_h05_v02_h01 -->
</div><!-- content_h05_v02 -->