- 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: Fonts
Here are some of the key CSS properties related to fonts:
- Font Family (font-family): Specifies the typeface or font family for text. You can specify multiple font families as a fallback in case the browser does not support the first choice.
body {
font-family: Arial, Helvetica, sans-serif;
}
- Font Size (font-size): Sets the size of the font. You can use various units such as pixels (px), ems (em), percentages (%), or keywords like small, medium, large, etc.
h1 {
font-size: 24px;
}
p {
font-size: 16px;
}
- Font Style (font-style): Specifies whether the font should be normal, italic, or oblique.
em {
font-style: italic;
}
- Font Weight (font-weight): Sets the thickness or weight of the font. Common values include normal, bold, bolder, lighter, or numeric values (100 to 900).
strong {
font-weight: bold;
}
span {
font-weight: 600;
}
- Font Variant (font-variant): Controls the appearance of small-caps text. Values can be normal or small-caps.
.small-caps {
font-variant: small-caps;
}
- Text Transform (text-transform): Changes the capitalization of text. Values can be uppercase, lowercase, capitalize, or none.
.uppercase {
text-transform: uppercase;
}
.capitalize {
text-transform: capitalize;
}
Line Height (line-height): Sets the height of each line of text, which can improve readability and spacing.
p {
line-height: 1.5;
}
- Text Decoration (text-decoration): Adds decorations such as underline, overline, or line-through to text.
a {
text-decoration: underline;
}
del {
text-decoration: line-through;
}
- Letter Spacing (letter-spacing): Adjusts the spacing between characters.
.spaced {
letter-spacing: 1px;
}
These are just some of the CSS properties related to fonts. By using these properties effectively, you can customize the appearance of text on your web pages to create visually appealing and readable content.