Lessons 4-7 Flashcards

1
Q

What is absolute positioning?

A

When an element is removed from its position to a geometric position, defined by its location to the sides of the display face.

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

Define block flow.

A

Display property which fills as much space as possible.

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

What is a bounding box?

A

Small rectangle which will fit to hold all letters and the background, which can be styled by CSS.

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

Define CSS.

A

Cascading Style Sheets, used to style, format and arrange elements within a webpage internally or externally.

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

Define the class attribute.

A

The class attribute specifies one or more classnames for an element. The class attribute is mostly used to point to a class in a style sheet.

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

What is CSS3?

A

Cascading Style Sheets Level 3 (CSS3) is the iteration of the CSS standard used in the styling and formatting of Web pages. Most recent and included in HTML5.

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

What is a declaration used for?

A

A property and value pair is called a declaration.

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

What is float positioning?

A

Useful for column layouts, float positioning moves an element as far as possible left or right. Text will wrap around a floating element.

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

What is the font attribute used for?

A

To select your desire style for your text. More specifically can use font-family to add fallback fonts.

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

What is the purpose of the font-family attribute?

A

The font-family property specifies the font for an element. It has a fallback system allowing you to provide backup fonts if your font style is not available. e.g font-family:verdana,trebuchet,arial,sans serif;

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

What is the hidden overflow value?

A

Overflow value which makes any content overflow invisible so not to leak onto the rest of the web page. This does cut off content when required.

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

What is the inline flow value?

A

Display property which only uses the amount of space required to fit the content.

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

What does the monospace value do?

A

A font property which makes all letters and characters have the same proportions.

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

Define sans serif.

A

Font styles that do not have caps on the letters. e.g. Arial.

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

What is the scrolling overflow value?

A

When an element overflows its box it automatically sets to a scroll bar so no overflow leaks onto the rest of the web design.

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

Define a selector.

A

CSS selectors select HTML elements according to its id, class, type, attribute etc. e.g .dog{ #cat{

17
Q

What is the visible overflow value?

A

Overflow value which allows content to write over the elements following it.

18
Q

What does the border attribute do?

A

Defines the style of a border around your element e.g. colour, width, border-style, radius, left/right/top/bottom.

19
Q

What is a flexbox?

A

The flex layout allows responsive elements within a container to be automatically arranged depending upon screen size.

20
Q

Define a flexbox item.

A

Flex items have primarily horizontal rows or vertical columns. The four options for flex-direction are row | row-reverse | column | column reverse. row and row-reverse are dependent on the writing mode.

21
Q

Define a grid item.

A

A grid container contains grid items. By default, a container has one grid item for each column, in each row, but you can style the grid items so that they will span multiple columns and/or rows. Also known as child element.

22
Q

What is the Grid Layout Model?

A

The CSS Grid Layout Module offers a grid-based layout system, with rows and columns, making it easier to design web pages without having to use floats and positioning.

23
Q

Define the margin attribute.

A

Allows you to specify the width of the margin and where an element is placed in a webpage.

24
Q

What are media queries?

A

Media queries is a feature of CSS 3 allowing content rendering to adapt to different conditions such as screen resolution. i.e. page breaks

25
Q

Define the padding attribute.

A

Adds a padding border around the content.

26
Q

Define a parent/child relationship.

A

The Parent-Child relationship of CSS means that the parent design element influences the elements within it.

27
Q

Examples of a content container?

A

<div>, , , , , , and more.</div>

28
Q

Define content source.

A

The CSS Regions module allows content from one or more elements to flow through one or more boxes called CSS Regions.

29
Q

What do CSS exclusions and CSS regions do?

A

Exclusions define how in-line content flows around elements.

30
Q

What does the flow from value do?

A

Flows content from a named flow (specified by a corresponding flow-into) through selected elements to form a chain of layout regions.

31
Q

What does the flow into value do?

A

The flow-into property affects the visual formatting of elements or contents placed into a named flow.

32
Q

Define hyphenation.

A

The hyphens CSS property specifies how words should be hyphenated when text wraps across multiple lines. It can prevent hyphenation entirely.

33
Q

What is an iFrame?

A

An iFrame is an inline frame used inside a webpage to load another HTML document inside it.

34
Q

What is the purpose of the border-radius property?

A

The border-radius CSS property rounds the corners of an element’s outer border edge.

35
Q

What does the drop shadow attribute do?

A

The drop-shadow CSS function applies a drop shadow effect to the input image.