Skip to content

Instantly share code, notes, and snippets.

@timhunt
Created December 9, 2011 15:41
Show Gist options
  • Save timhunt/1452031 to your computer and use it in GitHub Desktop.
Save timhunt/1452031 to your computer and use it in GitHub Desktop.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>CSS test</title>
<style type="text/css">
div {
line-height: 30px;
background: #cfc;
}
span {
display: inline-block;
width: 30px;
height: 28px;
border: 1px solid black;
background: #fff;
text-align: center;
line-height: 28px;
}
</style>
</head>
<body>
<h1>CSS test</h1>
<div>
x <span>x</span>
x<sup>2</sup> <span>x<sup>2</sup></span>
x<sub>2</sub> <span>x<sub>2</sub></span>
x<sup>2</sup><sub>2</sub> <span>x<sup>2</sup><sub>2</sub></span>
x
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment