mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
330 B
HTML
20 lines
330 B
HTML
<html>
|
|
<head>
|
|
<title>Inside block shrinkwraps when outside inline-block has scrollframe</title>
|
|
<style>
|
|
div {
|
|
border: 1px solid black;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div style="display: inline-block; width: 500px; background-color: red;">
|
|
<div style="background-color: lime;">
|
|
div
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|