CSS Basics for Beginners
Discover the fundamentals of Cascading Style Sheets (CSS) with these introductory examples.
CSS Selectors
CSS selectors are patterns used to select and style HTML elements.
/* Selects all paragraphs */
p {
color: #333;
}
CSS Properties
CSS properties define the style of HTML elements. Common properties include color, font-size, and background.
/* Styles a heading with blue color and larger font size */
h1 {
color: #3498db;
font-size: 24px;
}
CSS Box Model
The CSS box model describes the space around an element, including margin, border, padding, and content.
/* Adds padding and border to a div */
div {
padding: 10px;
border: 1px solid #ccc;
}
Post a Comment