Pseudo-element
CSS Pseudo-element
A keyword targeting a specific part of an element (e.g. ::before, ::after, ::first-line, ::selection).
รายละเอียดทางเทคนิค
CSS pseudo-element 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: Pseudo-element */
.element {
/* Apply pseudo element to this element */
display: block;
margin: 0 auto;
}
```