Select language
Română
English
Français
Deutsch
Italiano
Español
Home
Languages ▾
CPP
C
CS
GO
JAVA
Python
Html
JS
CSS
PHP
Hard Lessons ▾
Hard Lesson 1
Hard Lesson 2
Hard Lesson 3
Hard Lesson 4
Hard Lesson 5
Hard Lesson 6
Hard Lesson 7
Hard Lesson 8
Hard Lesson 9
Hard Lesson 10
Hard Lesson 11
Hard Lesson 12
Compiler
Account
CSS
Selectors
/* Element selector */ p { color: red; } /* Class selector */ .box { border: 1px solid black; } /* ID selector */ #header { background-color: yellow; }
Box Model
div { margin: 10px; padding: 20px; border: 1px solid #000; width: 300px; }
Typography
body { font-family: Arial, sans-serif; font-size: 16px; line-height: 1.5; text-align: justify; }
Colors & Backgrounds
.container { color: white; background-color: #333; background-image: url("bg.jpg"); background-size: cover; }
Flexbox
.flex { display: flex; justify-content: space-between; align-items: center; }
Transitions
button { transition: background 0.3s ease; } button:hover { background: lightblue; }