Свойства CSS: Как задать количество разделов и подразделов с помощью раздела?
Перейти на страницу упражнений
Решение:
HTML-код:
<!DOCTYPE html>
<html>
<head>
<title>How to set a number sections and sub-sections with Section</title>
<style type="text/css">
body {
counter-reset: section;
}
h1 {
counter-reset: subsection;
}
h1:before {
counter-increment: section;
content: "Section " counter(section) ". ";
}
h2:before {
counter-increment: subsection;
content: counter(section) "." counter(subsection) " ";
}
</style>
</head>
<body>
<h1>HTML tutorials</h1>
<h2>HTML Tutorial</h2>
<h2>CSS Tutorial</h2>
<h2>HTML5 Tutorial</h2>
<h1>Database tutorials</h1>
<h2>SQL</h2>
<h2>MySQL</h2>
<h2>PostgreSQL</h2>
<h1>Exercises</h1>
<h2>HTML CSS</h2>
<h2>JavaScript</h2>
<h2>jQuery</h2>
<h2>PHP</h2>
</body>
</html>
Демонстрация в реальном времени:
Посмотрите ответ счетчика приращения Пера w3resource ( @ w3resource ) на CodePen .
Поддерживаемый браузер
да | да | да | да | да |
Каков уровень сложности этого упражнения?
Новый контент: Composer: менеджер зависимостей для PHP , R программирования
disqus2code