blob: 3b8e5a50c4908e69fbc18467232be716bf488aa5 (
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
27
|
<!DOCTYPE html>
<html>
<style>
fieldset.outer {
column-count: 1;
transform: translateX(3px);
position: relative;
width: 100px;
height: 50px;
border: 1px solid blue;
margin: 0;
}
div.fixed {
position: fixed;
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>
|