Web.QHMIT
.com
Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
Run
<!doctype html> <title>Example</title> <style> ul { background-color: lightgreen; } .outside { list-style-position: outside; } .inside { list-style-position: inside; } </style> <p>Can you see the difference?</p> <ul class="outside"> <li>list-style-type</li> <li>list-style-position</li> <li>list-style-image</li> </ul> <ul class="inside"> <li>list-style-type</li> <li>list-style-position</li> <li>list-style-image</li> </ul>
Preview