Chapter 6 Flashcards

1
Q

What is Adobe indesign product?

A

Adobe’s InDesign product is one of the industry’s leading software applications used to control the flow of content for print-based publications such as newspapers, magazines and books

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

What is CSS regions?

A

CSS Regions, also called content containers, are the elements in the HTML document that content can flow through

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

What is:
Content source
named flow
flow-from

A

HTML element that will hold the text or content to be displayed is called the content source.

The value for the flow-into property is a name that you would like to use to identify your content, which is called the named flow.

Elements that you want content to flow through should be assigned the flow-from property and must also have the same named flow value.

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

What is region-fragment property?

A

The region-fragment property should be used to control the behavior of the last region

region-fragment:break;

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

What is a overflow property?

A

the overflow property should be used to control the overflow in coordination with the region-fragment property.

overflow:visible;

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

What is multi-column layout?

A

Multi-column layout is an easy way to format content into multiple columns with very little markup and works well with large amounts of text that you want to flow into the display similar to a newspaper or magazine.

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

What property is inserted to have multi-column?

A

column-count:3; the text will breakup into three columns.

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

What is CSS3 hyphenation?

A

Hyphenation can be used to improve the layout of text by automatically calculating and adding a hyphen to words that will not fit within an area on the page. Hyphenation of text is controlled using the CSS3 hyphens property.

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

What are the values for hyphens?

A

auto
none
manual

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

What is css exclusions?

A

CSS exclusions can be used to force text to wrap around or inside of shapes and images. Figure 6.7 below is a great example of CSS Exclusions and Shapes

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

-ms-wrap-flow?

A

Gets or sets a value that specifies how exclusions impact inline content within block-level elements.

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

-ms-wrap-margin

A

Gets or sets a value that is used to offset the inner wrap shape from other shapes.

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

-ms-wrap-through

A

The -ms-wrap-through property is used to set how the content should wrap around the excluded element

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