fixed| 1 | <!DOCTYPE html> |
| 2 | <html lang="es"> |
| 3 | <head> |
| 4 | <meta charset="UTF-8"> |
| 5 | <meta name="viewport" |
| 6 | content="width=device-width"> |
| 7 | <title> |
| 8 | Posicionamiento fixed |
| 9 | </title> |
| 10 | <style> |
| 11 | span { |
| 12 | position: fixed; |
| 13 | top: 0; |
| 14 | right: 0; |
| 15 | background-color: yellow; |
| 16 | } |
| 17 | </style> |
| 18 | </head> |
| 19 | <body> |
| 20 | <h1> |
| 21 | Posicionamiento |
| 22 | <span>fixed</span> |
| 23 | </h1> |
| 24 | </body> |
| 25 | </html> |