Skip to content

Commit

Permalink
Add missing codeblock formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
queengooborg committed Aug 13, 2022
1 parent 1a0cb5f commit a2603fe
Showing 1 changed file with 22 additions and 20 deletions.
42 changes: 22 additions & 20 deletions files/es/web/css/bottom/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,26 +52,28 @@ El siguiente ejemplo permite contrastar entre `position:absolute` y `position:fi

- **Atención**: IE6 **no** soporta el código `position:fixed`.

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<title>Position at bottom, absolute or fixed</title>
<style type="text/css">
p {font-size:30px; line-height:3em;}
div.pos {width:49%; text-align:center; border:2px solid #00f;}
div#abs {position:absolute; bottom:0; left:0;}
div#fix {position:fixed; bottom:0; right:0;}
</style>
</head>
<body>
<p>Esto<br>es<br>un texto<br>alto,<br>alto,
<br>alto,<br>alto,<br>alto<br>de prueba.</p>
<div id="fix" class="pos"><p>Fixed</p></div>
<div id="abs" class="pos"><p>Absolute</p></div>
</body>
</html>
```html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<title>Position at bottom, absolute or fixed</title>
<style type="text/css">
p {font-size:30px; line-height:3em;}
div.pos {width:49%; text-align:center; border:2px solid #00f;}
div#abs {position:absolute; bottom:0; left:0;}
div#fix {position:fixed; bottom:0; right:0;}
</style>
</head>
<body>
<p>Esto<br>es<br>un texto<br>alto,<br>alto,
<br>alto,<br>alto,<br>alto<br>de prueba.</p>
<div id="fix" class="pos"><p>Fixed</p></div>
<div id="abs" class="pos"><p>Absolute</p></div>
</body>
</html>
```

### Notas

Expand Down

0 comments on commit a2603fe

Please sign in to comment.