mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
23 lines
725 B
HTML
23 lines
725 B
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<title>CSS Test (Transforms): Table</title>
|
|
<link href="mailto:ayg@aryeh.name" rel="author" title="Aryeh Gregor">
|
|
<link href="http://www.w3.org/TR/css-transforms-1/#transformable-element" rel="help">
|
|
<meta content="Inline-blocks are block-level elements, so
|
|
should transform the same as blocks." name="assert">
|
|
<link href="reference/transform-display-ref.htm" rel="match">
|
|
<link href="reference/transform-display-notref.htm" rel="mismatch">
|
|
<style>
|
|
div {
|
|
width: 100px;
|
|
height: 100px;
|
|
transform: rotate(180deg);
|
|
display: table;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>This is some rotated text</div>
|
|
|
|
|
|
</body></html> |