CSS Basics Flashcards
Basic syntax
p {
comment syntax
/* comment here */
Block style
surrounds portions of code in curly braces
Selector
- CSS offers several ways to identify which elements to apply a style to using a selector
- identifies what element to style
Property
identifies which component to change
Value
specifies the value of the attribute
Declaration
indicates a property/value pair
Class selector
- selects all elements with the specified class attribute
- use a period before class name
ID selector
- selects all elements with specified ID attribute
- use # pound symbol before class name
Universal selector
- selects all elements on the page
- use * symbol
Selecting multiple elements
- selects multiple elements using different selectors
- use common (,) to delimit multiple selectors
ex: html, body, h1, p { //apply CSS here }
Parent-child selector
- selects all immediate matching children of an element
- use > symbol between parent and child
ex: div > p {
}
Ancestor-descendant selector
-selects all matching descendants of an element (general descendants)
-use a space between two selectors
ex: div p {
}
Sibling selector
- to select elements that are siblings (immediate children of the same parent
- use + sign
ex: h2 + p {}
Predecessor/Successor selector
- selects all successors of an element
- its a generic sibling selector
- use the tilde character (~)
ex: p ~ span {}
Combining selectors
- you can combine multiple selectors to apply styles to more specific elements
- use period
ex: p.red.tall {}
Specifying color
Examples:
name(red) hex-value (#FF0000) rgb (255,0,0) rgba (255,0,0,1) hsl(360,100%,100%) hsla(360,100%,100%,1)
Specifying color (hexadecimal)
- Each set of two characters identifies a value between 0 and 255 for its corresponding color component.
- hex-value (#FF0000)
Specifying color (rgb)
- specify color in base 10 as a value between 0 and 255 for each component (red, green,blue)
- p{
color: rgb() }
Specifying color (rgba)
-4th value between 0 and 1 indicate level of transparency
Specifying color (hsl)
-specify a color in terms of hue, saturation (%) and lightness (%)
Specifying color (hsla)
-alpha value as a -4th value between 0 and 1 indicate level of transparency
Background property
- use the background property to change styling for background of elements
- can change color, size, position, image and repeat
- use background prefix
ex: background-color : #FF00FF;
Background shorthand
-applies multiple properties in a single statement
-ex:
div {
background: url(“bg.jpg”) #0000ff top right;
}
CSS color and background summary
CSS offers ways to manage the color and background properties of elements.
Color can be defined in multiple ways including a predefined name, hexadecimal, rgb or hsl values.
You can further control many aspects of background including size, image, position, repeat, and color.