Logical Property
CSS Logical Property
Properties using flow-relative directions (inline-start, block-end) instead of physical ones (left, top) for i18n support.
기술 세부사항
CSS logical property is part of the CSS specification maintained by the W3C CSS Working Group. Browser rendering engines (Blink, WebKit, Gecko) implement the specification through their layout and paint pipeline stages. Understanding the rendering pipeline — Style → Layout → Paint → Composite — is key to writing performant CSS. Properties that trigger layout recalculation (width, height, margin) are more expensive than those that only trigger compositing (transform, opacity).
예시
```css
/* Example: Logical Property */
.element {
/* Apply logical property to this element */
display: block;
margin: 0 auto;
}
```