I'm using CSS3 Multiple Columns. Inner elements have position:relative and can contain arrows with position:absolute.
.clm3{
-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;
-webkit-column-gap: 0;
-moz-column-gap: 0;
column-gap: 0;
}
Problem: CSS3 column cut off part of arrow with position:absolute.
Example: http://jsfiddle.net/k4ucr72h/
.custCheck
) haveposition: relative
and that means that the "arrows" won't be able to exceed their limit. I suggest you take the arrows outside of the list, or remove the relative position from the labels, and then locate the arrows with JS. – Perplexityoverflow: hidden
like shown in this example. I guess the browser simply (and quite logically) makes sure that every column will behave as if it hasoverflow: hidden
– Perplexity