html - Order list making the line numbers hrefs -
i'm using ordered list , able link specific line using line numbers links them.
<ol> <li id="line10" href="#line10">coffee</li> <li>tea</li> <li>milk</li> </ol>
i wondering if guys know of way this?
thanks help!
the href
attribute not valid attribute of li
if want li
clickable link, linking itself, nest a
element inside:
<li id="line10"><a href="#line10">coffee</a></li>
Comments
Post a Comment