li::marker {
font-weight: bold;
}padding-left: 10px;Unfortunately that doesn't work on my android tablet
The solution is:Write in a stylesheetli::marker {
font-weight: bold;
}
padding-left: 10px;ol {counter-reset: item;}
ol li {display: block;}
ol li:before {content: counter(item) ". "; counter-increment: item; font-weight: bold;}