| <html> | |
| <head> | |
| <style> | |
| body { list-style-position: inside; } | |
| ul { list-style-position: outside; } | |
| ul.insidebullets { list-style: inherit } | |
| </style> | |
| </head> | |
| <body> | |
| <ul class="insidebullets"> | |
| <li>This list item should have an inside bullet.<br> | |
| This line should begin under the bullet. | |
| </ul> | |
| </body> | |
| </html> | |