- CSS Tutorial
- CSS Introduction
- CSS Syntax
- CSS Comments
- CSS Selectors
- CSS Fonts
- CSS Colors
- CSS Backgrounds
- CSS Box Model
- CSS Borders
- CSS Margins
- CSS Padding
- CSS Text
- CSS Images
- CSS Links
- CSS Lists
- CSS Tables
- CSS Outline
- CSS Icons
- CSS Display
- CSS max-witdh
- CSS Position
- CSS z-index
- CSS Overflow
- CSS Float
- CSS Align
- CSS Opacity
- CSS Navigation Bar
- CSS Dropdowns
- CSS Forms
- CSS Units
- CSS !important
- CSS Specificity
- CSS Combinators
- CSS inline-block
- CSS Hover
- CSS Cursors
- CSS Selectors
- CSS Type Selector
- CSS Class Selector
- CSS ID Selector
- CSS Attribute Selector
- CSS Pseudo-class Selector
- CSS Pseudo-element Selector
- CSS Universal Selector
- CSS Advanced
- CSS Text Formatting
- CSS Gradients
- CSS Shadow
- CSS Rounded Corners
- CSS Text Effects
- CSS 2D Transform
- CSS 3D Transform
- CSS Border Images
- CSS Inherit
- CSS Transitions
- CSS Animations
- CSS Box Sizing
- CSS Tooltip
- CSS Masking
- CSS Pagination
- CSS Styling Images
- CSS object-fit
- CSS object-position
- CSS Buttons
- CSS Multiple Columns
- CSS Variables
- CSS Flexbox
- CSS Grid
- CSS Media Queries
CSS: Syntax
The syntax of CSS (Cascading Style Sheets) consists of several key components:
- Selectors: Selectors target HTML elements to apply styles. They can be element selectors (e.g., p for paragraphs), class selectors (e.g., .my-class), ID selectors (e.g., #my-id), attribute selectors (e.g., [type="text"]), or more complex selectors that combine these methods.
- Declaration Block: Within curly braces {}, you define the properties and their corresponding values that you want to apply to the selected elements. Each declaration is separated by a semicolon ;.
- Properties: CSS properties specify the visual characteristics of elements. Examples include color, font-size, background-color, margin, padding, border, display, position, etc.
- Values: Values are assigned to properties to define how they should be applied. For example, color: blue; sets the text color to blue, and font-size: 16px; sets the font size to 16 pixels.
Here's an example of the basic syntax of a CSS rule:
selector {
property1: value1;
property2: value2;
/* more properties */
}
For instance, to style all paragraphs (<p> elements) with a red text color and a font size of 18 pixels, you would use:
p {
color: red;
font-size: 18px;
}
Selectors can be combined to target specific elements more precisely. For example, to style elements with a specific class:
.my-class {
font-weight: bold;
background-color: yellow;
}
Or, to target elements with a particular ID:
#my-id {
border: 1px solid black;
}
Additionally, CSS supports comments using /* */ for multi-line comments or // for single-line comments.
/* This is a multi-line comment */
// This is a single-line comment
This basic syntax forms the foundation of CSS, allowing you to style HTML elements and create visually appealing web pages