- 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: Text
CSS provides a wide range of properties for styling text on web pages. These properties allow you to control aspects such as font size, font family, font weight, text alignment, text decoration, line height, letter spacing, and more. Here's an overview of some common CSS text properties and how they can be used:
- Font Family (font-family): Specifies the typeface or font family for text. You can specify multiple font families as fallback options.
body {
font-family: Arial, Helvetica, sans-serif;
}
.special-text {
font-family: 'Times New Roman', Times, serif;
}
- Font Size (font-size): Sets the size of the text. 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 Weight (font-weight): Specifies the thickness or weight of the font. Common values include normal, bold, bolder, lighter, or numeric values (100 to 900).
strong {
font-weight: bold;
}
.light-text {
font-weight: lighter;
}
- Text Color (color): Sets the color of the text. You can use named colors, hexadecimal codes, RGB values, or color keywords.
.primary-text {
color: blue;
}
.highlight-text {
color: #FF0000; /* Red color */
}
- Text Alignment (text-align): Specifies the horizontal alignment of text within its container. Values can be left, right, center, or justify.
.centered-text {
text-align: center;
}
.right-aligned-text {
text-align: right;
}
- Text Decoration (text-decoration): Adds decorations such as underline, overline, line-through, or none (removes any decoration).
a {
text-decoration: underline;
}
.crossed-out-text {
text-decoration: line-through;
}
- Line Height (line-height): Sets the height of each line of text, which can improve readability and spacing.
p {
line-height: 1.5; /* Line height 1.5 times the font size */
}
.tight-line-height {
line-height: 1; /* Normal line height */
}
- Letter Spacing (letter-spacing): Adjusts the spacing between characters.
.spaced-text {
letter-spacing: 1px; /* 1-pixel letter spacing */
}
.wide-letter-spacing {
letter-spacing: 2px; /* 2-pixel letter spacing */
}
These are just some of the CSS properties that you can use to style text on web pages. By combining these properties effectively, you can create visually appealing and readable text content for your website.