Crash Course Flashcards

1
Q

Static(Auto) Positioning

A

The default position allowing the element to display as defined under the layout selection. The normal flow of content

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Box model

A

The simple idea that each of these HTML elements is treated as a box

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

The word for website layout levels

A

Hierarchy

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are the three aspects of element hierarchy?

A
  1. Nesting
  2. Text Styling
  3. Sizing
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

CMS

A

Content managment system

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Relative Positioning

A

Positions an element relative to its static or default position as defined under the layout section. It allows you to move an element with affecting the other elements around it.
Overlaps other elements with affecting the document flow.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Absolute Positioning

A

Positions an element relative to its closest parent or to the body if no parent is positioned. The element is yanked out and position itself around the parent element.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Fixed Positioning

A

Positions an element relative to the browser window, so it stays in place as the page is scrolled. It’s relative to the viewport, not the parent element.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Sticky Positioning

A

Fixes and element to the canvas only after user scrolls past a specific location on page.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

html

A

content

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

css

A

style

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

javascript

A

interaction

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

In the head tag you put in

A

The settings of the webpage. All the information about the webpage eg.) meta tags

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

In the body tag you put in

A

Everything the user will see in the front

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Text styling and sizing passes down through

A

hierarchy

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

T or F: min height will still respect the contents height

A

True

17
Q

What is a RTE?

A

Rich Text, A one-stop shop for a ton of content: headings, paragraphs, links, lists, blockquotes, images, or videos.

18
Q

Block elements

A

Block elements stack on top of each other. They start on a new line and take up the full entire width of their parent. They do not wrap.

19
Q

Flexbox layout

A

Flex lays out its child elements on a horizontal or vertical axis. Great for justifying and aligning content along one dimension.

20
Q

Inline-block elements

A

Inline elements sit inline. Sits next to eachother. They do wrap if their width hits their parent’s width.

21
Q

Grid layout

A

Great for justifying and aligning content along two-dimensional layout. You can set columns and rows on a parent element. and child elements can be placed inside.

22
Q

vh

A

viewport height

23
Q

vw

A

viewport width

24
Q

min and max lets you add a ___ or ___ to a value.

A

floor or ceiling. Allows you to put a minimums and maximums to put a floor or ceiling on Dimensions when we don’t want things to go out of control.

25
Q

Flex container

A

The parent element in a flex layout. Flexbox container starts when you create a flex container out of something.

26
Q

Flex Items

A

The child element in a flex layout. Any of the items directly inside (any direct children of the flex container) are referred to as flex items.

27
Q

For one dimensional layouts, it’s great to use _____. Vertical OR Horizontal

A

Flexbox

28
Q

Grid Area

A

It allows you to decide your layout before you place a single element. Elements placed in an area will move and resize with the area.

29
Q

What is a em unit. Explain.

A

Every browser has a default font size for example 16px. so 1em will equal 16px unless you change the default font size. 2em, in this case, would be 32px. ems are relative to the font size of it’s parent.

30
Q

What is a rem unit. Explain.

A

Root ems. Rems are relative to the HTML font size. Which is going to respect the browser’s default font size. Rem ignores it’s parent’s size for ex the body’s font size and goes all the way to the root.

31
Q

What is a text shadow?

A

Shadow that directly applies to typography

32
Q

What are breakpoints?

A

Breakpoints are the point a which your sites content will respond to provide the user with the best possible layout to consume the information.

33
Q

Mobile First

A

Approaching the design mobile first is the best approach for a responsive design.