mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
17 lines
203 B
HTML
17 lines
203 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
|
|
.a { overflow: scroll; }
|
|
.b, .c { overflow: inherit; }
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="a"><span class="b"><div class="c"></div></span></div>
|
|
|
|
</body>
|
|
</html>
|