


CSS overflow:hidden with Floats
Understanding the Impact of Overflow Property
The overflow property in CSS specifies the handling of content that exceeds the boundaries of its containing element. When applied to an element with floated child elements, it establishes a new block formatting context.
Effect on Text Placement
Consider the following code snippet:
ul { list-style-type: none; margin: 0; padding: 0; overflow: hidden; } li { float: left; } a { display: block; width: 60px; background-color: #dddddd; padding: 8px; }
By default, a paragraph (p) element appearing after the ul would be pushed to the bottom because ul is a block-level element. However, when overflow is set to hidden on the ul, the following occurs:
- The ul establishes a block formatting context, containing its float child elements (the lis).
- The ul "reappears" and no longer collapses to a height of 0px.
- The paragraph (p) is pushed to the end of the ul's content, appearing after the floated elements.
This is because overflow:hidden creates a new formatting environment where the ul acts like a block-level element, containing its child elements.
Technical Explanation
According to the CSS specification:
- When overflow is 'visible': "Non-replaced block-level elements do not establish a new block formatting context, regardless of their float property." ([§10.6.3](https://www.w3.org/TR/CSS2/visudet.html#block-level))
- When overflow is set to a non-'visible' value: "A block formatting context is established by the root element of any subtree whose root element is the root of the child list of an inline-level or atomic inline-level element, the element is floating, is absolutely positioned, or has 'overflow' other than 'visible'." ([§10.6.7](https://www.w3.org/TR/CSS21/visudet.html#containing-block))
Setting overflow:hidden on the ul creates a new block formatting context, causing it to contain its child elements and push the paragraph to the bottom.
The above is the detailed content of How Does `overflow: hidden` Affect Floated Elements and Subsequent Content?. For more information, please follow other related articles on the PHP Chinese website!

This is the 3rd post in a small series we did on form accessibility. If you missed the second post, check out "Managing User Focus with :focus-visible". In

This tutorial demonstrates creating professional-looking JavaScript forms using the Smart Forms framework (note: no longer available). While the framework itself is unavailable, the principles and techniques remain relevant for other form builders.

The CSS box-shadow and outline properties gained theme.json support in WordPress 6.1. Let's look at a few examples of how it works in real themes, and what options we have to apply these styles to WordPress blocks and elements.

If you’ve recently started working with GraphQL, or reviewed its pros and cons, you’ve no doubt heard things like “GraphQL doesn’t support caching” or

The Svelte transition API provides a way to animate components when they enter or leave the document, including custom Svelte transitions.

This article explores the top PHP form builder scripts available on Envato Market, comparing their features, flexibility, and design. Before diving into specific options, let's understand what a PHP form builder is and why you'd use one. A PHP form

How much time do you spend designing the content presentation for your websites? When you write a new blog post or create a new page, are you thinking about

npm commands run various tasks for you, either as a one-off or a continuously running process for things like starting a server or compiling code.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Dreamweaver Mac version
Visual web development tools

Notepad++7.3.1
Easy-to-use and free code editor

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
