css basics 1
css basics 1
20161128
The previous two articles have already covered the basics of simple scc, so I won’t go into details here. Let’s start with the distance between elements today!
1. Calculation of distance between elements
1. The distance between two horizontal containers s1 and s2 is calculated as s:
s = margin-right of s1 + margin-left of s2 (+default value)
2. The distance between two vertical containers s1 and s2 is calculated as s:
The larger of the margin-bottom of s1 and the margin-top of s2
3. The distance between two containers s1 and s2 containing relationships is calculated as s. Assume that s1 is the parent element
The sum of the padding of s1 and the margin of s2
Two, float:(float)
After an element floats to the left:
1. The position of the element floating to the left is determined by the padding of the parent element and its own margin . At the same time, it becomes shorter (determined by padding, content, width and height)
2. The following element will occupy its original position
3. float: right (right) left (left) none (not floating, default attribute )
4. clear: (clear float)
left right both(all)
Three, positioning(position)
1. Absolute positioning (absolute)
2. Relative positioning: (relative)
Position relative to the original position of the element
* If an element has positioning, First check whether the parent element has positioning
1. If not, use the body as the base position
2. If there is one, position it based on the parent element
Four, level (z-index)
* It needs to be coordinated with positioning to work. The larger the number, the higher it is ranked.
The default value is 0 and can be negative.

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

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit
