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

{{ CSSRef() }}

+ +

Resumo

+ +

The border-spacing property specifies the distance between the borders of adjacent cells (only for the separated borders model). This is equivalent to the cellspacing attribute in presentational HTML.

+ + + +

Sintaxe

+ +

border-spacing: <length> | <length> <length> | inherit

+ +

Valores

+ + + +

Exemplos

+ +

View Live Examples

+ +
table#space {
+  border-collapse: separate;
+  border-spacing: 10px 5px;
+}
+
+ +

Notas

+ +

This property applies only when {{ Cssxref("border-collapse") }} is "separate".

+ +

The border-spacing is also used along the outside edge of the table, where the distance between the table's border and the cells in the first/last column or row is the sum of the relevant (horizontal or vertical) border-spacing and the relevant (top, right, bottom, or left) padding on the table.

+ +

Especificações

+ + + +

Compatibilidade com navegadores

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NavegadorVersão mais antiga
Netscape6
Internet Explorer7
Firefox1
Mozilla1
Safari1
Opera6
+ +

 

+ +

Veja também

+ +

{{ Cssxref("border-collapse") }}, {{ Cssxref("border-spacing") }}

+ +

Categorias

+ +

Interwiki Language Links

+ +

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

-- cgit v1.2.3-54-g00ecf