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

18 lines
210 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
table {
width: 85%;
margin-left: auto;
margin-right: auto;
background: gold;
}
</style>
</head>
<body>
<table><tr><td>a</td></tr></table>
</body>
</html>