IES: CSS-deck 12 Flashcards
1
Q
“capitalize”
A
- text-transform keyword
- Transforms the text to words with the first letter capitalized regardless of writing convention or how it is written in the HTML coding
2
Q
white-space
A
- specifies control and treatment of white space within takes content
- white-space keywords: “pre”, “no-wrap”, “pre-wrap”, or “pre-line”
3
Q
direction
A
- direction keywords: “rtl” or “ltr”
- (default): left-to-right direction
- direction is used to specify and change the direction of text lines
- allows text to be presented in different languages -read or written in different directions- on a single line
4
Q
“rtl”
A
- direction keyword
- changes or specifies the direction of text lines
- specifies that the text is to be written or read from the right of the text to its left.
5
Q
“ltr”
A
- direction keyword
- changes or specifies the direction of text lines
- specifies that the text is to be written or read from the left of the text to its right.
6
Q
“pre”
A
- white-space keyword
- specifies or (preserves) that all spaces are to be kept as they appear in the original text, including any line breaks.
7
Q
“no-wrap”
A
- white-space keyword
- specifies that the automatic wrapping of text in a block is to be prevented
8
Q
“pre-wrap”
A
- white-space keyword
- Specifies that spaces are to be preserved while still allowing text to wrap normally
9
Q
“pre-line”
A
- white-space keyword
- specifies the collapse of multiple spaces while preserving line breaks
10
Q
unicode-bidi
A
- unicode-bidi keywords: bidi-override, normal, embed, or isolate.
- controls how bidirectional text is to be displayed or handled in a document
- Specifies the Unicode algorithm is to be followed or overridden
11
Q
“bidi-override”
A
- unicode-bidi keyword
- turns off the automatic bidirectional algorithm in HTML source code
- Generally, the default of rtl text achieves the desired effect; in practice, this override is seldom needed
- Create an override for inline elements, and an override for inline-level descendants in block elements
12
Q
“embed”
A
- unicode-bidi keyword
- Opens an additional level of embedding for inline elements
13
Q
“normal”
A
- unicode-bidi keyword
- unicode-bidi default value
- Does not open an additional level of embedding
14
Q
“isolate”
A
- unicode-bidi keyword
- Isolates the element from its siblings
15
Q
CSS pseudo-elements
A
- ::before
- ::after
- ::first-letter
- ::first-line
- ::selection
- ::marker