Список маркеров: изменение маркеров и нумерации с помощью list-style-type

Изменение маркеров и нумерации в списке с помощью свойства list-style-type.

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>List markers</title>
	<style>
		ol { list-style-type: lower-roman; }

		ul { list-style-type: square; }

		ul ul { list-style-type: circle; }
	</style>
</head>
<body>
	<ul>
		<li>This
			<ul>
				<li>This type of this</li>
				<li>That type of this
					<ul>
						<li>This type of that type of this</li>
						<li>That type of that type of this</li>
						<li>The other type of that type of this</li>
					</ul>
				</li>
				<li>The other type of this</li>
			</ul>
		</li>
		<li>That</li>
		<li>The Other</li>
	</ul>

	<ol>
		<li>The first thing</li>
		<li>The second thing</li>
		<li>The third thing</li>
	</ol>
</body>
</html>

Страницы в тему:

Добавить комментарий