aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/css/margin
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/web/css/margin')
-rw-r--r--files/fr/web/css/margin/index.md22
1 files changed, 11 insertions, 11 deletions
diff --git a/files/fr/web/css/margin/index.md b/files/fr/web/css/margin/index.md
index d59ed50cf2..d8647fbf8a 100644
--- a/files/fr/web/css/margin/index.md
+++ b/files/fr/web/css/margin/index.md
@@ -71,13 +71,13 @@ Cette propriété peut accepter une, deux, trois ou quatre valeurs avec les type
```css
.ex1 {
-  margin: auto;
-  background: gold;
-  width: 66%;
+ margin: auto;
+ background: gold;
+ width: 66%;
}
.ex2 {
-  margin: 20px 0px 0 -20px;
-  background: gold;
+ margin: 20px 0px 0 -20px;
+ background: gold;
width: 66%;
}
```
@@ -86,14 +86,14 @@ Cette propriété peut accepter une, deux, trois ou quatre valeurs avec les type
```html
<div class="ex1">
-  margin:     auto;
-  background: gold;
- width:      66%;
+ margin: auto;
+ background: gold;
+ width: 66%;
</div>
<div class="ex2">
-  margin:     20px 0px 0px -20px;
-  background: gold;
- width:      66%;
+ margin: 20px 0px 0px -20px;
+ background: gold;
+ width: 66%;
</div>
```