Ordered List Styling

by bradleytrager

HTML

<ol>
    <li class="blue_bulleted_text"><span>First Element</span></li>
    <li class="blue_bulleted_text"><span>Second Element</span></li>
</ol>

CSS

ol li.blue_bulleted_text{
    color:blue;
}
ol li.blue_bulleted_text>span{
    color:black;
}