I want a right-aligned list
<ol>
<li>Debian</li>
<li>Ubuntu</li>
<li>Mint</li>
<li>elementaryOS</li>
<li>RedHat</li>
<li>Fedora</li>
<li>Slackware</li>
</ol>
I want a right-aligned list
<ol>
<li>Debian</li>
<li>Ubuntu</li>
<li>Mint</li>
<li>elementaryOS</li>
<li>RedHat</li>
<li>Fedora</li>
<li>Slackware</li>
</ol>
2
Answers
try:
li{
float:right
}
in your css stylesheet
You can achieve this using css and adding the
text-align: right;
property. To have the bullets follow, we need them to follow the text and being set to inside. That is done withlist-style-position: inside;