blob: a55abfbb99ecc4317123904e051b2bba81941244 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<style>
#mc > div {
position: absolute;
inline-size: 50px;
border: 10px solid;
}
</style>
<p>Box shadows should not be painted at column breaks.</p>
<div id="mc" style="position:relative; margin:50px; inline-size:400px; block-size:100px; background:yellow;">
<div style="inset-inline-start:-10px; inset-block-start:-10px; block-size:100px; border-block-end:none;"></div>
<div style="inset-inline-start: 140px; block-size:100px; border-block-start:none; border-block-end:none;"></div>
<div style="inset-inline-start: 290px; block-size:50px; border-block-start:none;"></div>
</div>
|