blob: 18cdcfc4ff724524db6c3ae28e40d10588f4982c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!DOCTYPE html>
<html>
<style>
fieldset.outer {
column-count: 1;
margin-left: 3px;
position: relative;
width: 100px;
height: 50px;
border: 1px solid blue;
}
div.fixed {
position: absolute;
top: 0;
left: 0;
background: green;
}
</style>
<!-- ABC should be inside the fieldset since 'transform' creates a stacking context. -->
<fieldset class="outer">
<legend>Legend</legend>
<div class="fixed">ABC</div>
</fieldset>
</html>
|