Prev Demo
List Inside And Outside
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <style> ul.a { list-style-position:inside; } ul.b{ list-style-position:outside; } </style> </head> <body> <p> lists with inside and outside </p> <ul class="a"> <li>mango</li> <li>apple</li> <li>orange</li> </ul> <ul class="b"> <li>techfunda</li> <li>dotnetfunda</li> <li>itfunda</li> </ul> </body> </body> </html>
Note: We DO NOT save your trial code in our database.
Output