Add support for <super> and <sup> tags. Fixes equations on wikipedia.

This commit is contained in:
Glenn Watson 2014-09-29 15:16:59 +10:00
parent d9e26352a1
commit 52c5007b07
10 changed files with 232 additions and 15 deletions

View file

@ -0,0 +1,29 @@
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body {
margin: 0;
}
.text {
position: absolute;
background-color: blue;
top: 100px;
width: 100px;
height: 100px;
}
.aligned {
position: absolute;
background-color: red;
top: 136px;
left: 100px;
width: 80px;
height: 80px;
}
</style>
</head>
<body>
<div class="text"></div>
<div class="aligned"></div>
</body>
</html>