CSS Online Editor & Compiler
Write, Run & Share CSS code online using OneCompiler's free CSS editor. Preview your styles in real time alongside HTML and JS.
About CSS
CSS (Cascading Style Sheets) describes how HTML elements are displayed on screen. CSS controls layout, color, typography, and animations across multiple pages at once.
Selectors
- Element selector: `h1 { }`
- Class selector: `.title { }`
- ID selector: `#main { }`
- Descendant: `nav a { }`
Example
.button {
background: #5c6ac4;
color: white;
padding: .5rem 1rem;
border-radius: 6px;
}
