Add support for tables that are floated.

This commit is contained in:
Glenn Watson 2014-09-12 14:42:28 +10:00
parent b64f27b2b6
commit 6a9001b4fd
4 changed files with 76 additions and 4 deletions

View file

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
<style type="text/css">
body {
margin: 0;
}
div {
background-color: red;
width: 100px;
height: 100px;
position: absolute;
right: 0;
}
</style>
</head>
<body>
<div></div>
</body>
</html>