example here: http://jsfiddle.net/R7GUZ/3/
I'm struggling to make the list-style
property work in webkit for a parent OL that is styled with
-webkit-column-count: 2;
-moz-column-count: 2;
column-count: 2;
Is there a way to format an ordered list into columns using css3 and still keep the list-style
formatting?
<ol class="text-col2">
<li>
<strong>Can we call you?</strong>
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia.</p>
</li>
<li>
<strong>Can we call you?</strong>
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia.</p>
</li>
</ol>