From 074785cea106179cb3305637055ab0a009ca74f2 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:52 -0500 Subject: initial commit --- files/pt-pt/web/css/counter-increment/index.html | 66 ++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 files/pt-pt/web/css/counter-increment/index.html (limited to 'files/pt-pt/web/css/counter-increment/index.html') diff --git a/files/pt-pt/web/css/counter-increment/index.html b/files/pt-pt/web/css/counter-increment/index.html new file mode 100644 index 0000000000..43197dba12 --- /dev/null +++ b/files/pt-pt/web/css/counter-increment/index.html @@ -0,0 +1,66 @@ +--- +title: counter-increment +slug: Web/CSS/counter-increment +tags: + - CSS + - CSS List + - CSS Property + - Reference +translation_of: Web/CSS/counter-increment +--- +

{{ CSSRef() }}

+ +

Resumo

+ +

counter-increment é usado para aumentar o valor de CSS Counters com um valor dado.

+ +

{{cssinfo}}

+ +

Sintaxe

+ +
counter-increment: [<identifier> <integer>?]+ | inherit | none
+
+ +

Valores

+ +
+
identifier 
+
O nome do contador para incrementar.
+
integer 
+
O valor para adicionar ao contador. O padrão é 1 se nada for dado.
+
+ +

Você pode especificar como muitos contadores para incrementar como você quiser, cada um separado por um espaço.

+ +

Propriedades relacionadas

+ + + +

Exemplos

+ +
h1 {
+  counter-increment: chapter section 2 page;
+  /* Aumenta o valor dos contadores de capítulo e página em 1
+     e o contador da seção em 2. */
+}
+
+ +

== Notas ==

+ +

Especificações

+ + + +

== Compatibilidade com navegadores ==

+ +

Veja também

+ +

CSS Counters, {{ Cssxref("counter-increment") }}, {{ Cssxref("counter-reset") }}

+ +

Categorias

+ +

Interwiki Language Links

-- cgit v1.2.3-54-g00ecf