blob: cb96c61ddbf848495f51cf82663f0a7a8739b04d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!DOCTYPE html>
<html><head>
<title>CSS Test (Transforms): Transformability of Table-Cell</title>
<link href="mailto:ayg@aryeh.name" rel="author" title="Aryeh Gregor">
<link href="http://www.w3.org/TR/css-transforms-1/#transform-property" rel="help">
<meta content="This tests that transforms specified on a
table-cell work as expected." name="assert">
<link href="reference/transform-transformable-table-cell-ref.htm" rel="match">
<style>
body {
overflow: hidden;
}
div {
display: table-cell;
transform: translate(50px, 50px);
}
</style>
</head>
<body>
<div>Some text</div>
</body></html>
|