HTML Dog
Skip to navigation

Inside and outside list markers

Using list-style-position.

HTML

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>Lists marker position</title>
	<style>
		body {
			font: 1em arial, helvetica, sans-serif;
		}
	
		ul {
			border: 2px solid black;
		}
	
		li {
			border: 2px dotted #ccc;
			bfackground: #ccc;
		}
	
		.second {
			list-style-position: inside;
		}
	</style>
</head>
<body>
	<ul>
		<li>This</li>
		<li>That</li>
		<li class="second">The other</li>
	</ul>

	<!-- Link back to HTML Dog: -->
	<p><a href="http://www.htmldog.com/examples/"><img src="http://www.htmldog.com/badge1.gif" alt="HTML Dog"></a></p>
</body>
</html>

Output

View original