CSS Flashcards
What are the names of the individual pieces of a CSS ruleset?
- Selector
- Declaration (comprised of a property and its value)
In CSS, how do you select elements by their class attribute?
With the class selector
Ex. .note { } - targets any elements whose class attribute is note
In CSS, how do you select elements by their type?
You select the elements with their name and { }
Ex. h1 { } - this will select all h1 elements
In CSS, how do you select an element by its id attribute?
With the id selector #
Ex. #introduction - targets the element whose id attribute has the value of introduction
Name three different types of values you can use to specify colors in CSS.
- rgb value (red, green, blue)
- Values are expressed between 0 and 255
- Ex. rgb (102, 205, 170)
- hex codes
- has 6 characters
- Ex. #66cdaa
-color names
What CSS properties make up the box model?
Margin, padding, border, width, height
*Width & height = content of box
Which CSS property pushes boxes away from each other?
Margin
Which CSS property adds space between a box’s content and its border?
Padding
What is a pseudo-class?
Keywords added to a selector that specifies a special state of the selected elements
Ex. “ : hover “ can be used to change a button’s color when the user’s pointer hovers over it
What are CSS pseudo-classes useful for?
It is useful for applying styling to an element that is not only in relation to the content but also in relation to external factors (also good for visual and interactive purposes)
Name two types of units that can be used to adjust font-size in CSS.
Pixels, percentages, ems
What CSS property controls the font used for the text inside an element?
Font-family property
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?
They are block-line elements and block line elements start on new lines
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 (block-level elements sit on top of each other)
How does setting position: relative on an element affect document flow?
It’ll still remain in flow with the document just like static properties but the only difference is that now its positioned elsewhere
How does setting position: relative on an element affect where it appears on the page?
It’s still in the same in the position on the page, it is just offsetted if an offset property is set
How does setting position: absolute on an element affect document flow?
It no longers exist on the document flow
How does setting position: absolute on an element affect where it appears on the page?
Its positioned next to the closest non static position value
How do you constrain an absolutely positioned element to a containing block?
With any properties that isn’t static (absolute or relative)
What are the four box offset properties?
top , bottom, left, right
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 your stylesheet; the styling provided for an element that is last in the styling sheet is the one that takes effect (bottom styling is stronger)
How is it possible for the styles of an element to be applied to its children as well without an additional CSS rule?
It is possible because of inheritance; this process allows child HTML elements to receive value from a parent element if no css for that property [the child] is declared
List the three selector types in order of increasing specificity.
- Type selectors (e.g., h1) and pseudo-elements (e.g., ::before).
- Class selectors (e.g., .example), attributes selectors (e.g., [type=”radio”]) and pseudo-classes (e.g., :hover).
- ID selectors (e.g., #example)
Why is using !important considered bad practice?
It makes debugging more difficult by breaking the natural cascading in your style sheets
What does the transform property do?
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.
Matrix
Translate
Scale
Rotate
Give two examples of media features that you can query in an @media rule.
Update, width, height, hover, etc.
Which HTML meta tag is used in mobile-responsive web pages?
Viewport meta tag
The transition property is shorthand for which four CSS properties?
Transition-property: sets the CSS properties to which a transition effect should be applied.
Transition-duration: sets the length of time a transition animation should take to complete. By default, the value is 0s, meaning that no animation will occur.
Transition-timing-function: sets how intermediate values are calculated for CSS properties being affected by a transition effect.
Transition-delay: specifies the duration to wait before starting a property’s transition effect when its value changes.
What is a breakpoint in responsive Web design?
When certain styles are being applied based on media queries
-Especially device width
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?
Using a percentage allows the browser page to be responsive with different devices; if we use a pixel, the size is fixed and it will remain that size regardless of the device
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 smaller width will win if it is placed last due to the ordering rule of CSS (cascading) - things that are placed last get priority