mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
20 lines
346 B
HTML
20 lines
346 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; overflow: auto; background-color: red;">
|
|
<div style="background-color: lime;">
|
|
div
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|