<style>

Los bloques de estilos definidos en el contenido son trasladados al bloque head de la envoltura.

Contenido Envoltura Resultado
<style>
#main {
  width : 200px;
}
</style>
<div id=main>
  Prueba
</div>
<html>

<head>
...
</head>
<body>
  <div id=main>
  </div>
</body>
</html>
<html>
<head>
...
<style>
div.main {
  width : 500px;
}
</style>
</head>
<body>
  <div id=main>
    Prueba
  </div>
</body>
</html>