blob: 7b45eecf5d52c6e933bbe076727b35abef9b3d6d [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>CSS Test (Transforms): Table</title>
<link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#transformable-element">
<meta name="assert" content='Inline-blocks are block-level elements, so
should transform the same as blocks.'>
<link rel="match" href="transform-display-ref.html">
<link rel="mismatch" href="transform-display-notref.html">
<style>
div {
width: 100px;
height: 100px;
transform: rotate(180deg);
display: table;
}
</style>
</head>
<body>
<div>This is some rotated text</div>
</body>
</html>