I am trying to create an ordered list (no point, border with radius and 45 ° rotation)
<div class="test"> <ol> <li><span>it a test</span></li> <li><span>and again</span></li> </ol> </div>
And css
.test ol { counter-reset: li; list-style-type: none; } .test ol > li { position:relative; list-style:none; } .test ol > li:before { content:counter(li); counter-increment:li; position:absolute; top:-2px; left:-24px; width:21px; color:#E2202D; font-weight:bold; font-family:"Helvetica Neue", Arial, sans-serif; text-align:center; border: 1px dashed #E2202D; -webkit-border-radius:6px; border-radius:6px; -webkit-transform: rotate(45deg); }
He gives me that
And here I am blocking ... How do I rotate the frame without rotating the number inside? How to style pseudo element content in css?
Thanks for any advice :)
css html-lists pseudo-element
barbuk
source share