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

Popular posts from this blog

c++ - Creating new partition disk winapi -

Android Prevent Bluetooth Pairing Dialog -

VBA function to include CDATA -