mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
29 lines
541 B
HTML
29 lines
541 B
HTML
|
<!DOCTYPE html>
|
||
|
<link rel="match" href="reference/overflow-hidden-4-ref.html" />
|
||
|
<style>
|
||
|
* {
|
||
|
outline: black solid 1px;
|
||
|
}
|
||
|
.outer {
|
||
|
background: pink;
|
||
|
width: 100px;
|
||
|
height: 100px;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
.middle {
|
||
|
transform: perspective(1200px);
|
||
|
background: orange;
|
||
|
}
|
||
|
.inner {
|
||
|
width: 300px;
|
||
|
height: 300px;
|
||
|
background: magenta;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
.red {
|
||
|
background: red;
|
||
|
width: 300px;
|
||
|
height: 300px;
|
||
|
}
|
||
|
</style><body><div class="outer"><div class="middle"><div class="inner"><div class="red">
|