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/border-bottom/index.html | 109 +++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 files/pt-pt/web/css/border-bottom/index.html (limited to 'files/pt-pt/web/css/border-bottom/index.html') diff --git a/files/pt-pt/web/css/border-bottom/index.html b/files/pt-pt/web/css/border-bottom/index.html new file mode 100644 index 0000000000..08da201a5f --- /dev/null +++ b/files/pt-pt/web/css/border-bottom/index.html @@ -0,0 +1,109 @@ +--- +title: border-bottom +slug: Web/CSS/border-bottom +tags: + - Referencia_CSS +translation_of: Web/CSS/border-bottom +--- +

{{ CSSRef() }}

+ +

Resumo

+ +

A propriedade border-bottom é uma propriedadeshorthand que configura os valores de {{ Cssxref("border-bottom-color") }}, {{ Cssxref("border-bottom-style") }} e {{ Cssxref("border-bottom-width") }}. Estas propriedades descrevem a borda inferior de elementos.

+ + + +

Sintaxe

+ +
border-bottom: [ <border-width> || <border-style> || <border-color> ] |inherit
+
+ +

Valores

+ +
+
<border-width> 
+
Veja {{ Cssxref("border-bottom-width") }}.
+
<border-style> 
+
Veja {{ Cssxref("border-bottom-style") }}.
+
<border-color> 
+
Veja {{ Cssxref("border-bottom-color") }}.
+
+ +

Exemplos

+ +

View Live Examples

+ +
element {
+    border-bottom-width: 1px solid #000;
+}
+
+ +

Notas

+ +

Os três valores da propriedadeshorthand podem ser especificados em qualquer ordem e um ou dois deles podem ser omitidos.

+ +

Como com todas as propriedadesshorthand, border-bottom sempre configura os valores de todas as propriedades que ele pode configurar, ainda que elas não sejam especificadas. Ele configura as que não especificadas para os seus valores padrão. De maneira que:

+ +
  border-bottom-style: dotted;
+  border-bottom: thick green;
+ +

é realmente o mesmo que

+ +
  border-bottom-style: dotted;
+  border-bottom: none thick green;
+ +

e o valor de {{ Cssxref("border-bottom-style") }} dado antes border-bottom é ignorado.

+ +

Desde que o valor padrão de {{ Cssxref("border-bottom-style") }} seja none, não especificar o <border-style> torna o valor, o mesmo que a propriedade especifica na borda.

+ +

Especificações

+ + + +

Compatibilidade com navegadores

+ + + + + + + + + + + + + + + + + + + + + + + + +
NavegadorVersão mais antiga
Internet Explorer4
Firefox1
Netscape4
Opera3.5
+ +

Veja também

+ +

{{ Cssxref("border") }}, {{ Cssxref("border-bottom") }}, {{ Cssxref("border-bottom-width") }}, {{ Cssxref("border-bottom-style") }}, {{ Cssxref("border-bottom-color") }},

+ +

Categorias

+ +

Interwiki Language Links

+ +

{{ languages( { "en": "en/CSS/border-bottom", "fr": "fr/CSS/border-bottom", "pl": "pl/CSS/border-bottom" } ) }}

-- cgit v1.2.3-54-g00ecf