2022-10-10
1894
#css
David Omotayo
136407
Oct 10, 2022 â‹… 6 min read

A new guide to CSS overflow

David Omotayo Frontend developer and indie game enthusiast.

Recent posts:

JavaScript logo representing the programming language used to implement a customizable and responsive signature pad in the article.

Implementing a signature pad with JavaScript

Signature pads are useful tools for capturing handwritten signatures in web applications. They enhance user interaction by allowing users to […]

Debjyoti Banerjee
Sep 30, 2024 â‹… 12 min read
This image features the iconic React logo—a blue atom-like symbol with a central dot and orbiting curves—superimposed on a background of a city skyline. The city appears to be shrouded in soft pink and purple hues, giving the image a modern, tech-focused atmosphere. This image symbolizex the use of React for building modular, scalable frontend architectures. React's component-based approach aligns with the principles of micro-frontends, where different parts of the user interface are independently developed and managed, similar to how microservices operate on the backend. The cityscape in the background represents the larger, complex web applications that can benefit from a structured, flexible frontend framework like React.

Practical guidance between vertical and horizontal micro-frontends

Micro-frontends, like microservices in backend development, divide frontend applications into modular, self-contained components that can be independently developed, tested, and […]

Peter Aideloje
Sep 27, 2024 â‹… 8 min read
Tauri Adoption Guide: Overview Examples, And Alternatives

Tauri adoption guide: Overview, examples, and alternatives

Tauri is an excellent toolkit for building lightweight, secure, and cross-platform desktop applications. Learn more in this guide.

Ikeh Akinyemi
Sep 26, 2024 â‹… 11 min read
Developing Modals Using Only CSS And The Popover API

Developing modals using only CSS and the Popover API

The Dialog and Popover approach to modals requires less code and and fewer files than using JavaScript method, making it less error-prone.

Daniel Schwarz
Sep 26, 2024 â‹… 7 min read
View all posts

2 Replies to "A new guide to CSS <code>overflow</code>"

  1. The article needs two imrovements/corrections:
    1) Stop including the property name in what you refer to as being a *value*. Property name is one thing and the value (of a property) is another thing!
    2) The article states that overflow: clip is set to the container to make overflow-clip-margin work. This is false.

    1. Hi Widheg, I apologize if my reference to the values caused confusion for you. However, I’d like you to know that the `overflow-clip-margin` property, indeed, requires the use of `overflow: clip;` to function correctly. For further information on this property, please refer to the MDN documentation.

      Thank you.

Leave a Reply