CSS Flashcards
What are the names of the individual pieces of a CSS rule?
CSS Selectors
In CSS. how do you select elements by their CLASS attribute?
Use a . before name of the class
example: .class-name { }
In CSS. how do you select elements by their type?
Use the name of the element followed by the curly braces
example: body { }
In CSS, how do you select an element by its ID attribute?
Use a # before the name of the ID
example: #id-name { }
Name three different types of values you can use to specify colors in CSS:
RGB Values, Hex Codes, Color Names
RGB, RGBA, HSL, HSLA
What CSS properties make up the box model?
Margin, Border, Padding, width, height
Which CSS property pushes boxes away from each other?
Margin Property
Which CSS property adds space between a box’s content and its border?
Padding Property
What is a psuedo-class?
a selector that selects elements that are in a specific state, i.e. they are the first element of their type, or they are being hovered by a mouse pointer.
What are CSS pseudo-classes useful for?
A pseudo-class is used to define a special state of an element.
For example, it can be used to:
- Style an element when a user mouses over it
- Style visited and unvisited links differently
- Style an element when it gets focus
Name two types of units that can be used to adjust font-size in CSS:
Pixels, percentages, ems, rems
What CSS property controls the font used for the text inside an element?
font-family
What is the default flex-direction of a flex container?
row
What is the default flex-wrap of a flex container?
nowrap
Why do two div elements “vertically stack” on one another by default?
div is a block element and takes the full width of the content resulting in the divs stacking on one another.
What is the default flex-direction of an element with the display: flex?
row
What is the default value for the position property of HTML elements?
static
How does setting position: relative on an element affect document flow?
does not affect document flow
How does setting position: relative on an element affect where it appears on the page?
DOES NOT change position without using: top, bottom, left, right properties in CSS.
How does setting position: absolute on an element affect document flow?
it gets ignored by best of document, all surround elements ignore the absolute, everything shifts to fill
How does setting position: absolute on an element affect where it appears on the page?
sets position to relative, goes to first ancestor without STATIC position (relative) and sticks to that.
How do you constrain an absolutely positioned element to a containing block?
set ancestor to something other than STATIC
What are the four box offset properties?
top, bottom, left, right
What does the transform property do?
The transform CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.
Give four examples of CSS transform functions.
transform: matrix
transform: translate
transform: scale
transform: rotate
transform: skew
The transition property is shorthand for which four CSS properties?
transition-property, transition-duration, transition-timing-function, transition-delay
What is a breakpoint in responsive Web Design?
The point at which a media query is introduced
What is the advantage of using a percentage(e.g. 50%) width instead of a fixed (e.g. px) width for a “column” in a responsive layout?
Its relative to its parent and will change sizes based on its parent’s sizing
If you introduce CSS rules for a smaller min-width after the styles for a larger min-width in your style sheet, the CSS rules for the smaller min-width will “win”. Why is that?
Source Order