Table of Contents
CSS Introduction | What is CSS ? simple explanation – codewithrandom
What is CSS?
- CSS stands for Cascading Stylesheet.
- CSS is to Style the elements of an HTML document.
- CSS describes how elements should be rendered on screen.
CSS Prerequisites
Basic knowledge of working with files or file management.
Basic understanding of HTML. In order to start learning CSS you have to have a basic understanding of HTML first.
Why Use CSS
CSS defines styles of your web pages including design, layout and variations in display across devices and screen sizes.
CSS can save you a lot of work. An external stylesheet saved as .css
can be used to style multiple web pages all at once!
CSS Example
Here is one examples .
body {
background-color: black;
}
p {
font-size: 20px;
color: gold;
}