I'm trying to style an ordered list (no dot, a border with radius and rotate 45°)
<div class="test">
<ol>
<li><span>it's a test</span></li>
<li><span>and again</span></li>
</ol>
</div>
And the 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);
}
It give me that
And this is here i'm blocking... How to rotate the border without rotate the number inside ? How to style the content of a pseudo element in css ?
Thanks for any advice :)
There's no way to rotate the border and text separately. Instead, you can split the number and the border into two different pseudo-elements,
:before
and:after
.See: http://jsbin.com/agotuj/54/edit