Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <h1>Scroll Detection with<br>CSS Scroll-Driven Animations<br><em>(Space Toggle)</em></h1>
<main>
	<div>
		<div class="container">
			<p>CSS, short for Cascading Style Sheets, is a programming language that is used to describe the presentation or visual layout of a document written in HTML. It acts as a styling tool and enables web developers to control the appearance of their websites or web pages by specifying how different elements should be displayed on the screen. CSS allows designers to define various aspects such as font styles, colors, spacing between elements, background images, and much more.</p>
			<p>The term "cascading" in CSS refers to its ability to apply multiple stylesheets simultaneously and prioritize them based on their importance or specificity. This feature allows developers to create consistent designs across multiple web pages by defining common styles in an external stylesheet which can then be linked to all relevant HTML documents. Additionally, CSS makes it easy to update the design of an entire website by simply modifying one central stylesheet rather than having to manually edit each individual webpage.</p>
			<p>CSS can be applied directly within an HTML document using inline stylesheets or internally through embedded stylesheets within the head section of a page. However, it is considered best practice and more efficient from both maintenance and performance perspectives to use external style sheets stored separately in .css files which are then referenced within HTML documents.</p>
			<p>One important concept in CSS is selectors. Selectors allow you to target specific elements within your HTML markup so that you can apply different styles only where needed. Selectors can target tags (e.g., p, div), classes (e.g., .header), IDs (e.g., #main), attributes (e.g., [type="submit"]), pseudo-classes (e.g., :hover) and many other properties of DOM elements.</p>
			<p>Overall, CSS plays a crucial role in modern web development as it provides great flexibility and control over how content looks on websites. By separating style from structure with this powerful language, developers are able to create visually appealing websites while maintaining clean code that adheres to best practices for web accessibility and user experience.</p>
		</div>
		<p>&uarr; This container can scroll</p>
	</div>

	<div>
		<div class="container">
			<p>CSS, short for Cascading Style Sheets, is a programming language that is used to describe the presentation or visual layout of a document written in HTML.</p>
		</div>
		<p>&uarr; This container can’t scroll</p>
	</div>
</main>

<footer>
	<p>Demo for <a href="https://brm.us/css-can-scroll" target="_top">https://brm.us/css-can-scroll</a></p>
</footer>
              
            
!

CSS

              
                .container {
	height: 250px;
	width: 250px;
  overflow-y: auto;
	
	--can-scroll: initial; /* initial = false */
  animation: detect-scroll;
  animation-timeline: scroll(self);
	
	--color-if-can-scroll: var(--can-scroll) lime;
	--color-if-cant-scroll: red;
	outline: 10px dotted var(--color-if-can-scroll, var(--color-if-cant-scroll));
}

@keyframes detect-scroll {
  from, to {
    --can-scroll: ; /* space = true */
  }
}



* {
  box-sizing: border-box;
}

body {
  font-size: 17px;
  font-family: -system-ui, sans-serif;
  line-height: 1.5;
  letter-space: -0.01em;
  margin: 0;
  padding: 2em;
  color: #444;
  background: #cfcfcf;
  -webkit-font-smoothing: antialiased;
  
  display: grid;
  place-content: safe center;
  height: 100%;
  gap: 2rem;
}

h1 {
	margin: 0;
	padding: 0;
	text-align: center;
}

main {
	display: flex;
  gap: 2rem;
	margin: 0 auto;
	text-align: center;
}

html, body {
  height: 100%;
}

.container {
  position: relative;
  background: #fff;
  padding: 1em;
  margin: auto;
  border-radius: .3em;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
	text-align: left;
}

.container p {
	margin-bottom: 1em;
}

.container > *:first-child {
	margin-top: 0;
}
.container > *:last-child {
	margin-bottom: 0;
}

footer {
  text-align: center;
  font-style: italic;
  font-size: 80%;
}
              
            
!

JS

              
                
              
            
!
999px

Console