Zusammenfassung der Ressource
CSS
- This word
stands for
Cascading
Style
Sheets.
- CSS was
established
on 17th of
december
1996.
- CSS is a style sheet language used for describing the presentation of a document written in a markup language like html.
- CSS is designed to enable the separation of presentaion and content, including layout, colours and fonts.
- CSS is a language that
describes the style of
an HTML document.
CSS describes how
HTML elements
should be displayed.
- CSS enables you to pick colours for your
writing and to make different fonts. It
also helps you to change where you
write and what you are writing through
a range of easy to decipher codes.
- body { background-color:
lightblue; } h1 { color:
white; text-align: center; }
p { font-family: verdana;
font-size: 20px; }
- This means
that there
should be a
lightblue
background.
That the
writing should
be big and in
the centre and
it mentions the
font as well.