CSS: Properties

Learn about the various CSS properties used to style HTML elements.

Common CSS Properties

CSS properties allow you to control the appearance and layout of HTML elements:

Example: CSS Properties

/* Example */
div {
    color: white;
    background-color: black;
    font-size: 16px;
    margin: 10px;
    padding: 20px;
    border: 2px solid red;
    width: 300px;
    height: 150px;
}
        

This example demonstrates how to use various CSS properties to style a div element.

Practice

Try experimenting with CSS properties:

Continue Learning

Quick Check

Which CSS property sets the space inside an element?