letter-spacing
word-spacing
text-spacing
line-spacing
Hides the element
Changes the font
Increases the element's size
Makes the element visible
Adds rounded corners to an element
Aligns an element to the center
Moves an element to the left or right
Changes the transparency of an element
background-color
color
bgcolor
background
<!-- Comment -->
// Comment
/* Comment */
# Comment
It is a separate document that contains CSS rules
It separates content from the presentation but both are still contained in a single file
It separates the content and style into separate files
. It allows a web designer and a content author to work in parallel
The external CSS rule is applied
The inline style is applied
Both are ignored
The browser applies the styles randomly
Inline CSS
External CSS
Embedded CSS
Import XML
<link>
<style>
<script>
<css>
E[attr^=value]
E[attr$=value]
E[attr*=value]
None of these
E ~ F
::after
:checked
:default
:%
:disabled
:element
:empty
:enabled
:first-child
:last-child
::first-line
::first-letter
:!(s)
:nth-child(s)
:not(s)
:root
:nth-oftype(n)
:only-child
class
id
type
None of the above
h1.all {background-color:red;}
h1 {background-color:red;}
all.h1 {background-colorred;}
.h1{background-color:red}
<p style="font-size:bold;">
p {text-size:bold;}
<p style="text-size:bold;">
p {font-weight:bold;}
div p
div.p
div + p
div ~ p