Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-tables/caption-relative-positioning.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<link rel="author" title="Martin Robinson" href="mailto:mrobinson@igalia.com">
<link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com">
<title><caption> elements can be relatively positioned</title>
<meta name="assert" content="The caption is positioned relatively to the table wrapper">
<link rel="match" href="/css/reference/ref-filled-green-100px-square.xht">
<style>
caption {
position: relative;
background: green;
width: 100px;
height: 100px;
margin-left: 200px;
left: -200px;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div style="width: 100px; background: red;">
<table>
<caption></caption>
</table>
</div>
</html>