Web & UI

CSS

Cascading Style Sheets (CSS) is a style sheet language used for describing the presentation of a document written in a markup language like HTML. CSS is a cornerstone technology of the World Wide Web, alongside HTML and JavaScript.

Share this starting point code.study/css
Created by
Håkon Wium Lie , Bert Bos
First appeared
1996
Official resource
Visit the main website

Your first program

Hello, World!

CSS
/* Apply basic styling to the body element */
body {
    color: white;
    background-color: black;
    font-family: Arial, sans-serif;
    text-align: center;
}

/* Style for a 'Hello, World!' message */
.message {
    font-size: 24px;
    margin-top: 20px;
}