servo/tests/ref/servo_center_a.html
Patrick Walton 4b9cd4e65d layout: Implement <table width> and <center>.
Improves Hacker News.
2015-05-11 12:53:45 -07:00

20 lines
217 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
table {
width: 85%;
background: gold;
}
tbody {
text-align: left;
}
</style>
</head>
<body>
<center>
<table><tr><td>a</td></tr></table>
</center>
</body>
</html>