<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Basics</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Hello, CSS!</h1>
<p>This is a styled paragraph.</p>
</body>
</html>
/* styles.css */
body {
background-color: #f0f0f0;
font-family: Arial, sans-serif;
}
h1 {
color: blue;
font-size: 36px;
}
p {
color: gray;
font-size: 18px;
}
style
attribute directly in HTML.
<style>
tag inside <head>
.
.css
file using <link>
for separation of concerns.
/* Universal selector */
* {
margin: 0;
padding: 0;
}
/* Tag selector */
p {
color: green;
}
/* Class selector */
.box {
border: 1px solid black;
}
/* ID selector */
#main-heading {
font-size: 24px;
}
*
): Applies to all elements.p
, h1
, etc..className
): Reusable across multiple elements.#idName
): Unique for a single element./* Named colors */
h1 {
color: red;
}
/* Hexadecimal */
p {
color: #3498db;
}
/* RGB */
div {
background-color: rgb(52, 152, 219);
}
/* RGBA (with transparency) */
span {
background-color: rgba(52, 152, 219, 0.5);
}
body {
background-image: url("background.jpg");
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
body {
font-family: 'Roboto', sans-serif;
}
h1 {
font-size: 2em;
text-align: center;
text-transform: uppercase; /* Capitalizes all letters */
letter-spacing: 2px; /* Adds space between letters */
word-spacing: 4px; /* Adds space between words */
line-height: 1.5; /* Adjusts space between lines */
}
div {
width: 300px;
height: 200px;
margin: 20px; /* Space outside the element */
padding: 10px; /* Space inside the element */
border: 2px solid black; /* Border of the element */
background-color: lightgray;
}
box-sizing: border-box;
to
include padding and border in width/height..container {
display: flex;
justify-content: space-between; /* Horizontal alignment */
align-items: center; /* Vertical alignment */
gap: 10px; /* Space between items */
}
.item {
background-color: lightblue;
padding: 20px;
border: 1px solid blue;
}
<div class="container">
<div class="item">Item 1</div>
<div class="item">Item 2</div>
<div class="item">Item 3</div>
</div>
justify-content
: Align
items horizontally.align-items
: Align
items vertically.flex-wrap
: Wrap items
to the next row if necessary..container {
display: grid;
grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
grid-gap: 10px; /* Space between items */
}
.item {
background-color: lightgreen;
padding: 20px;
}
<div class="container">
<div class="item">Item 1</div>
<div class="item">Item 2</div>
<div class="item">Item 3</div>
</div>
grid-template-columns/rows
: Define rows and columns.
grid-gap
: Add spacing
between items.@keyframes slideIn {
from {
transform: translateX(-100%);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
.box {
animation: slideIn 2s ease-in-out;
}
<div class="box">I slide in!</div>
@keyframes
.
animation
property.
body {
font-size: 16px;
}
@media (max-width: 600px) {
body {
font-size: 14px; /* Smaller font for smaller screens */
}
}
@media (max-width: ...)
targets
screens below a certain width.a:hover {
color: red; /* Changes color when hovered */
}
input:focus {
border-color: blue; /* Highlights input field on focus */
}
h1::after {
content: "✨";
color: gold;
}
input[type="text"] {
border: 1px solid gray;
}
a[target="_blank"] {
color: green;
}
/* Descendant selector */
div p {
color: red;
}
/* Child selector */
div > p {
color: blue;
}
/* Adjacent sibling */
h1 + p {
color: orange;
}
/* General sibling */
h1 ~ p {
color: purple;
}
.box {
transform: rotate(45deg) scale(1.5);
}
div {
background: linear-gradient(to right, red, yellow);
}
circle {
background: radial-gradient(circle, red, yellow);
}
.box {
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}
:root {
--primary-color: #3498db;
--secondary-color: #2ecc71;
}
body {
color: var(--primary-color);
}
div {
position: relative;
}
.box1 {
background: red;
width: 100px;
height: 100px;
position: absolute;
z-index: 1; /* Behind box2 */
}
.box2 {
background: blue;
width: 100px;
height: 100px;
position: absolute;
z-index: 2; /* In front of box1 */
}
<div class="box1"></div>
<div class="box2"></div>
z-index
controls the stack order of overlapping elements.z-index
values appear in front.position: relative;
, opacity
, or transform
.
/* Low specificity */
p {
color: blue;
}
/* Medium specificity */
.article p {
color: green;
}
/* High specificity */
#main p {
color: red;
}
style="color: red"
(highest specificity).
#id
..class
,
attributes, pseudo-classes.p
,
div
, etc. (lowest specificity).
px
: Pixels,
fixed size, unaffected by user settings.cm
, mm
,
in
: Physical dimensions (rarely used).%
: Percentage
relative to the parent element.em
: Relative
to the font size of the parent.rem
: Relative
to the root element (<html>
).vh
,
vw
: Viewport height/width (1vh = 1% of viewport height).body {
font-size: 16px; /* Base font size */
}
h1 {
font-size: 2rem; /* 32px */
}
p {
width: 50%; /* Half the width of its container */
}
.section {
height: 50vh; /* Half the height of the viewport */
}
.button {
background-color: blue;
color: white;
padding: 10px 20px;
transition: background-color 0.3s ease, transform 0.3s ease;
}
.button:hover {
background-color: green;
transform: scale(1.1); /* Slight zoom */
}
transition
: Specifies which
properties change and their duration.ease
: Slow start, fast
middle, slow end.linear
: Constant speed.
:hover
, :focus
).a:hover {
color: red;
}
::before
, ::after
).h1::before {
content: "🔥 ";
}
input[type="text"] {
border: 1px solid gray;
}
input[placeholder*="search"] {
background-color: yellow;
}
[attribute]
: Matches elements
with the attribute.[attribute="value"]
:
Matches attributes with an exact value.[attribute^="value"]
:
Matches if the value starts with something.[attribute$="value"]
:
Matches if the value ends with something.[attribute*="value"]
:
Matches if the value contains something.div {
background: linear-gradient(to right, red, yellow, green);
}
button {
background: radial-gradient(circle, #ff0000, #000000);
}
linear-gradient(direction, color1, color2, ...)
.
radial-gradient(shape, color1, color2, ...)
.
div {
clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
background-color: orange;
width: 200px;
height: 200px;
}
clip-path
: Crops elements into
shapes like circles, polygons, etc..container {
display: grid;
grid-template-areas:
"header header"
"sidebar main"
"footer footer";
grid-template-columns: 1fr 3fr;
}
.header {
grid-area: header;
}
.sidebar {
grid-area: sidebar;
}
.main {
grid-area: main;
}
.footer {
grid-area: footer;
}
:root {
--main-bg-color: #ffffff;
--main-text-color: #333333;
}
body {
background-color: var(--main-bg-color);
color: var(--main-text-color);
}
/* Change variables dynamically */
.dark-theme {
--main-bg-color: #333333;
--main-text-color: #ffffff;
}
img {
filter: grayscale(50%) blur(2px) brightness(1.2);
}
grayscale(%)
:
Converts image to grayscale.blur(px)
:
Applies a blur effect.brightness(value)
: Adjust brightness.
div {
width: 200px;
height: 100px;
overflow: scroll; /* Adds scrollbars */
}
Margin and Padding
margin: 10px 20px 30px 40px; /* top, right, bottom, left */
Background
background: url("image.jpg") no-repeat center/cover;
F12
or
Ctrl+Shift+I
.