layout: Implement <table width> and <center>.

Improves Hacker News.
This commit is contained in:
Patrick Walton 2015-05-07 18:09:57 -07:00
parent 263b69cf7f
commit 4b9cd4e65d
13 changed files with 160 additions and 36 deletions

View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<style>
table {
width: 85%;
background: gold;
}
</style>
</head>
<body>
<table><tr><td>a</td></tr></table>
</body>
</html>