blob: 2be1e86bc077f1293ccc9ea851f23123ae679157 [file] [log] [blame] [edit]
<!DOCTYPE html>
<html>
<link rel="author" title="Martin Robinson" href="mailto:[email protected]">
<link rel="author" title="Oriol Brufau" href="mailto:[email protected]">
<title>&lt;caption&gt; elements can be relatively positioned</title>
<meta name="assert" content="The caption is positioned relatively to the table wrapper">
<link rel="help" href="https://drafts.csswg.org/css2/#relative-positioning">
<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>