33 lines
666 B
HTML
33 lines
666 B
HTML
<!doctype HTML>
|
|
<html>
|
|
<meta charset="utf8">
|
|
<title>Content Visibility: anchor links paint subtrees (reference)</title>
|
|
<link rel="author" title="Rakina Zata Amni" href="mailto:rakina@chromium.org">
|
|
<link rel="help" href="https://drafts.csswg.org/css-contain/#content-visibility">
|
|
|
|
<style>
|
|
.spacer {
|
|
width: 150px;
|
|
height: 3000px;
|
|
background: lightblue;
|
|
}
|
|
#container {
|
|
contain: style layout;
|
|
width: 150px;
|
|
height: 150px;
|
|
background: lightgreen;
|
|
}
|
|
#target {
|
|
width: 100px;
|
|
height: 100px;
|
|
background: green;
|
|
}
|
|
</style>
|
|
|
|
<div class="spacer"></div>
|
|
<div id="container"><div id="target"></div></div>
|
|
|
|
<script>
|
|
target.scrollIntoView();
|
|
</script>
|
|
</html>
|