::placeholder ::selection and ::marker
Style input placeholders, text selections, and list marker bullets with pseudo-elements.
::placeholder
::placeholder styles the placeholder text inside form input and textarea elements. Only a subset of CSS properties are supported.
input::placeholder {
color: #aaa;
font-style: italic;
font-size: 0.9rem;
}Supported ::placeholder Properties
Not all CSS properties work on ::placeholder. Supported properties include: color, font-size, font-weight, font-style, letter-spacing, opacity, and a few others. Layout properties are not supported.
All lessons in this course
- ::before and ::after Content
- ::placeholder ::selection and ::marker
- CSS Counters with ::before
- Decorative Patterns with Pseudo-elements