mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
18 lines
221 B
HTML
18 lines
221 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
|
|
.a:first-line { }
|
|
.a { overflow: scroll; }
|
|
.b, .c { overflow: inherit; }
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="a"><span class="b"><div class="c"></div></span></div>
|
|
|
|
</body>
|
|
</html>
|