+ 6
What I use for roman no. In table?
3 ответов
+ 48
to get roman no in table
<table border="1">
<tr>
<td>
<ol type="I">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol> </td>
<td>
<ol type="I">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol></td>
</tr> </table>
+ 13
<ol type="i">
For reference:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ol
+ 9
here is my code about list styling
https://code.sololearn.com/Wg6anlP7v623/?ref=app