Відмінності між версіями «Версія 2.29.1 (14.03.2023)»

нема опису редагування
Рядок 1: Рядок 1:
{{#css:
{{#css:
OL { counter-reset: item }
ol {
LI { display: block }
  list-style-type: none;
LI:before { content: counters(item, ".") " "; counter-increment: item }
  counter-reset: item;
  margin: 0;
  padding: 0;
}
 
ol > li {
  display: table;
  counter-increment: item;
  margin-bottom: 0.6em;
}
 
ol > li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 0.6em;   
}
 
li ol > li {
  margin: 0;
}
 
li ol > li:before {
  content: counters(item, ".") " ";
}
}}
}}
== Виправлено ==
== Виправлено ==