Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html>
<head>
<title>CSS Test (Transforms): Transformed caption contains fixed position elements.</title>
<link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org">
<meta name="assert" content='This test ensures that transformed caption element is a containing block for fixed position elements.'>
<link rel="match" href="transform-transformed-caption-contains-fixed-position-ref.html">
<style>
table, caption {
margin: 0;
padding: 0;
border-spacing: 0;
text-align: left;
}
.pad {
height: 50px;
}
.container {
transform: translateX(20px) rotate(45deg);
transform-origin: left;
}
.fixed {
position: fixed;
top: 15px;
left: 10px;
background-color: lightblue;
}
</style>
</head>
<body>
<div class='pad'></div>
<table style='width: 100px;'>
<caption class='container'>some text<div class='fixed'>fixed</div>
</caption>
</table>
</body>
</html>