blob: 58c1d5829d3febc17cfa20ecd3fece77bfcd12be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<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>
|