done two ways
Selectors
Colors
Display and Positioning
Grid/Flex
100

Two online resources (we've been using) to answer css/html related questions 

What are W3schools (or google) and Codecademy

100

p{ color : blue} is this type of selector

What is a type selector/ element selector

100

Changing text color requires this css property


what is color:


100

If the width of an element is set to 100%,  the element will occupy this much of the screen

What is the entire width of the screen

100

Justify-content moves content this ways

What is  horizontally (left and right )

200

Two ways to adjust font size (CSS and HTML)

What are h1-h6 tags (html) and font-size property (css)

200

* starts of this type of selector's styling declaration_______

What is a universal selector.

200

#007FFF is an example of this css color format

What is Hexvalue

200

This type of element takes up its own line regardless of how much space the content occupies

What is a block element

200

align-items moves content this way

What is vertically (up and down)

300

Two ways to adjust font thickness (CSS and HTML)

What are the font-weight property (css) and <strong> tags (html)

300

.{    #{

Of these selectors, ________ is more specific than ___________. 

What is, the class ID selector is more specific than that class selector.

300

The color format acronym HSL stands for ________

What is Hue, Saturation, Lightness

300

This position value keeps an element on a specific part of the page regardless of scrolling

What is fixed

300

What are the three sizing units that can be used to define grid values?

What are px, % and fr

400

Two ways to use a non web safe font

<link> and @font-family

400

A link that was first blue but then appears purple after being clicked (visited) is an example of this type of selector

What is a Pseudo Class Selector

400

These two ways to adjust the content's transparency

What are a (alpha) and opacity

400

The clear properties is used following this property

What is the float property

400

What is a more concise way to write this code below using a function specifically designated for grids? 

.grid {

  display: grid;

  width: 500px;

  grid-template-columns: 100px 100px 100px 100px 100px;

}

what is repeat(5, 100px);

500

Two ways to add styling (CSS and HTML)

What are <link href=___ rel=___> (external  ruleset css) and a style attribute or <style> tags in the head(html)( internal ruleset css or inline)

500

ul{ is an example of this parental type selectors

Descendant combinator

500

Its easier to adjust the background color and text color with this

 (alpha or opacity)

What is opacity

500

It's easiest to position <div>s next to each other with this display value

What is :inline-block;

500

_________: 2 / 3 / 4 / span 5;


this grid value shorthand belongs to what property?

what is grid-area.

M
e
n
u