CSS Flashcards
What are the names of the individual pieces of a CSS rule?
selector, declaration, curly brace, property, value
How do you select elements by their class attribute?
by adding a period in front:
.example {}
How do you select elements by their tag name?
just add the tag name
example {}
How do you select an element by its id attribute?
by adding a # in front:
#example {}
Name three different types of values you can use to specify colors in CSS.
the color name, rgb values, hexcodes
What CSS properties make up the box model?
border, margin, padding
Which CSS property pushes boxes away from each other?
Margin
Which CSS property add space between a box’s content and its border?
Padding
What is a pseudo-class?
pseudo-classes are keywords added next the the selector that specifies a special state of the selected element.
Give an example of a pseudo-class
button : hover {
background-color: blue;
}
this would change the color of the button if your cursor hovers over it.
:hover :active :focus are a few other ones
What are CSS pseudo-classes useful for?
it helps change an element when a specific action is taken
What does the :nth-child() pseudo class do?
an :nth-child() pseudo-class is used to specify between a group of siblings using their positions
Name the types of units that can be used to adjust font-size in CSS.
pixels(px), percentages, and ems(em)/rem
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?
because they are block level elements so each div would separate from each other
What is the default flex-direction of an element with display: flex?
row
What are the three primary components of a page layout? (Which helper classes do you need?)
container, row, columns
flexbox
What is the minimum number of columns that you should put in a row?
one
What is the purpose of a container?
To hold the contents needed for the layout
What is the default value for the position property of HTML elements?
position: static;
How does setting position: relative on an element affect document flow?
doesn’t really change the flow of the document but it moves the element
How does setting position: relative on an element affect where it appears on the page?
it moves an element in relation to where it would’ve been
How does setting position: absolute on an element affect document flow?
it changes the flow as the absolute value allows the element to move outside of the box or container
How does setting position: absolute on an element affect where it appears on the page?
it can be out of the box/container this means it won’t affect the position of the other elements
How do you constrain an absolutely positioned element to a containing block?
add the position: relative to the parent element
What are the four box offset properties?
top, right, bottom, left
What are the four components of “the Cascade”.
source-order, inheritance, specificity, !important
What does the term “source order” mean with respect to CSS?
the latest or most recent one in order of the css rule sets
How is it possible for the styles of an element to be applied to its children as well without an additional CSS rule?
because child elements inherit the styling of their parent element
List the three selector types in order of decreasing specificity.
id, class, type
Why is using !important considered bad practice?
us as last resort, it overrides everything, it will be hard to change the element with it, therefore making it hard for team projects//collaborations
What does the transform property do?
it transforms the element, either it changes its form, direction, etc.
Give four examples of CSS transform functions.
rotate, scale, translate, skew
The transition property is shorthand for which four CSS properties?
transition-property , transition-duration , transition-timing-function , and transition-delay
Give two examples of media features that you can query in an @media rule.
min-width, max-height, resolution, aspect-ratio
Which HTML meta tag is used in mobile-responsive web pages?
the viewport meta tag
What is a breakpoint in responsive Web design?
it’s a point where the change of the style happens
What is the advantage of using a percentage (e.g. 50%) width instead of a fixed (e.g. px) width for a “column” class in a responsive layout?
for smaller devices like phones it will scale the width by percentage instead of a set px since the px set is probably too big for the phones (tldr. good and efficient for smaller devices)
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?
because of the source order. whichever is last on the order “wins” only time the source order rule is overpowered is when the specificity is higher/stronger id/class/tag