CSS Flashcards
What are the names of the individual pieces of a CSS rule?
Selector {property : value;}
In CSS, how do you select elements by their class attribute?
use a . in front of the element
In CSS, how do you select elements by their type?
in styles.css
h1 {
}
In CSS, how do you select an element by its id attribute?
use a # in front of the element.
Name three different types of values you can use to specify colors in CSS.
RGB Value
Hex Code
Color Name
What CSS properties make up the box model?
Border
Margin
Padding
Which CSS property pushes boxes away from each other?
Margin controls the gap between boxes.
Which CSS property add space between a box’s content and its border?
Padding specifies how much space is between the contents of an element and its border.
What is a pseudo-class?
allow you to change the style or appearance of elements when you interact with them.
What are CSS pseudo-classes useful for?
one example is knowing what links you’ve visited by changing the link color from blue to purple once it’s been clicked.
Name two types of units that can be used to adjust font-size in CSS.
rem
ems
px
percentage
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 - left to right
What is the default flex-wrap of a flex container?
nowrap - all flex items will be on one line.
Why do two div elements “vertically stack” on one another by default?
div elements are block level elements.
What is the default flex-direction of an element with display: flex?
ROW / left to right
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?
it does not affect the position of the surrounding elements.
How does setting position: relative on an element affect where it appears on the page?
it moves the element to whatever spot you want it to go. ex-top, left, bottom, right
How does setting position: absolute on an element affect document flow?
it is taken out of the document flow essentially, it does not affect surrounding elements, its as if they ignore the space that shouldve been there.
How does setting position: absolute on an element affect where it appears on the page?
Absolutely positioned elements move as users scroll up and down the page. sit on the top of the nearest parent positioned element.
How do you constrain an absolutely positioned element to a containing block?
the element would need a positioned parent element.(not static).
What are the four box offset properties?
top, bottom, left, right
What are the names of the individual pieces of a CSS rule?
Selector {property : value;}
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 order that your css rules are written in the stylesheet.
The styling provided for an element last in your stylesheet is the styling that will ultimately take effect.
How is it possible for the styles of an element to be applied to its children as well without an additional CSS rule?
use inheritance because it allows child elements that have no style on it to inherit the style of its parent.
List the three selector types in order of increasing specificity.
ID - (only ID selectors) CLASS - (includes .class selectors, pseudo classes, also attribute selectors like type="radio") TYPE - (such as p, h1, td)
Why is using !important considered bad practice?
Understanding and effectively using specificity and the cascade can remove any need for the !important style.
What does the transform property do?
The transform CSS property lets you rotate, scale, skew, or translate an element.
it modifies the coordinate space.
Give four examples of CSS transform functions.
rotate
translate Y
scale
skew
The transition property is shorthand for which four CSS properties?
transition-property
transition-duration
transition-timing-function
transition-delay
Give two examples of media features that you can query in an @media rule.
min-width and max-width
Which HTML meta tag is used in mobile-responsive web pages?
viewport
@Media only media type and media feature
you should always specify the media type every time you use @media.
What is a breakpoint in responsive Web design?
its a point where a style is applied or a boundary.
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?
depending on how wide your screen is the column will always be 50% of the screen your using.
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?
the source order.