<html>
<body>
sdadfasdf a
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
asfdasdfasdfadf
</body>
</html>
Output is
sdadfasdf a
asfdasdfasdfadf
How to remove above and below spaces in Order list
Using css:
ol {
margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
}
remove the padding and margin:
ol {
margin: 0;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With