css - huge div border rendering issue -
i have weird case borders , background image not rendered past point in huge divs. have included sample in following fiddle! http://jsfiddle.net/hg333/
<div class="lane"> <div class="label-container"> <span class="label">3 - 5</span> </div> in rendered example borders "clipped". see if scroll right lines stop @ 4th march div continues (approx. 12000px) in rendered context.
any ideas anyone?
your canvas container set 1200px, that's causing problem.
try:
#canvas-container { /* width: 1200px;*/ overflow: visible; } i tried on fiddle without width, , worked. that's why left comment marks "/* */"
Comments
Post a Comment