font size for Subscript and Superscript : sub « Tags « HTML / CSS






font size for Subscript and Superscript

  

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <title></title>
<style type="text/css" media="Screen">
sub {
  vertical-align: -0.5em;
  font-size: 0.75em;
}

sup {
  vertical-align: 0.5em;
  font-size: 0.75em;
}

* .large {
  font-size: 32px;
}

sub {
  font-size: 0.9em;
}

sup {
  font-size: 0.9em;
}
</style>
</head>
<body>

<p class="large">A<sub>1</sub> B<sup>2</sup>C<sup>E</sup></p> 

</body>
</html>

   
  








Related examples in the same category

1.To subscript text use sub tags
2.Changing ordered list markers to upper-roman
3.'sub' Example