Ver Mensaje Individual
  #3 (permalink)  
Antiguo 18/03/2015, 19:57
MMan
 
Fecha de Ingreso: febrero-2015
Mensajes: 61
Antigüedad: 9 años, 10 meses
Puntos: 15
Respuesta: superindice en CSS

http://www.w3schools.com/tags/tag_sup.asp

html5

Código HTML:
Ver original
  1. <p>This text contains <sup>superscript</sup> text.</p>


Código CSS:
Ver original
  1. sup {
  2.     vertical-align: super;
  3.     font-size: smaller;
  4. }