I need some help with a css 3 issue...
Problem is when I defined a scrollBox with boder-radius and then I scroll to the bottom, there is a clipping issue with the border. There is no problem if the content div is defined with static position, but I need it to be relative for a translation effect.
You can try the following code to see what I mean :
<html>
<body>
<div class="scrollBox" style="width:50%;height:100px;background:grey;border-radius:10px">
<div class="content" style="height:100%;overflow:scroll">
<div>Item</div>
<div>Item</div>
<div>Item</div>
<div>Item</div>
<div>Item</div>
<div>Item</div>
<div>Item</div>
<div>Item</div>
<div>Item</div>
<div>Item</div>
<div>Item</div>
<div>Item</div>
<div>Item</div>
<div>Item</div>
<div>Item</div>
<div>Item</div>
<div>Item</div>
</div>
</div>
</body>
</html>
Hope there is actually a solution for my problem. Thanks !
padding? Also: are you sure you shouldn't use a list and list items (li) for what you are trying to display? – PeeHaa 埽 Oct 27 '12 at 17:11