mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
14 lines
496 B
HTML
14 lines
496 B
HTML
<!DOCTYPE html>
|
|
<body>
|
|
<div style="display: inline-block; background: blue;
|
|
box-sizing: border-box; height: 200px;
|
|
border: 25px transparent solid">
|
|
<div style="height: 100%; box-sizing: border-box;
|
|
border: 15px transparent solid;">
|
|
<!-- We need to be taller than intrinsic height, so use a min-height -->
|
|
<img src="lime100x100.png"
|
|
style="min-height: 100%; display: block; visibility: hidden;">
|
|
</div>
|
|
</div>
|
|
</body>
|