B. El posicionamiento fixed

Salida

Ábrelo en otra pestaña.

Revísalo en gilpgedit.

<!DOCTYPE html>
<html lang="es">
<head>
 <meta charset="UTF-8">
 <meta name="viewport"
   content="width=device-width">
 <title>
  Posicionamiento fixed
 </title>
 <style>
  span {
   positionfixed;
   top0;
   right0;
   background-coloryellow;
  }
 </style>
</head>
<body>
 <h1>
  Posicionamiento
  <span>fixed</span>
 </h1>
</body>
</html>