INTRODUCTION TO CSS Flashcards
CSS stands for
Cascading Style Sheet.
describes how HTML elements are to be
displayed on screen, paper, or in other media.
CSS
It was described and developed as a means to separate the design portion of the web page into a different file for easier management of a website’s
style.
CSS
This saves a lot of work for designing a web page
CSS
Was HTML intended to contain tags for formatting web pages?
No
HTML is used to:
to describe the content of the web page
parts of a css
Selector, Declaration block -> declaration (property and value)
h1 {color:blue; font-size:12px;}
what part is h1
selector
h1 {color:blue; font-size:12px;}
what part is color
property
what part is blue
value
points to the HTML element you want to
style.
selector
contains one or more
declarations separated by semicolons
declaration block ( the curly brackets “ { } “ )
includes a CSS property name and a
value, separated by a colon.
declaration
Multiple CSS declarations are separated with _______
semi colons
declaration blocks are surrounded by ________
curly brackets