C777 Unit 2_ Cascading Style Sheets (CSS) Flashcards _ Quizlet

0.0(0)
studied byStudied by 5 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/178

Last updated 7:48 PM on 3/16/23
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

179 Terms

1
New cards
transform rotate(angle)
Which transform value rotates the HTML element clockwise at the specified degree
2
New cards
transform
scale(x,y) Which transform value increases or decreases the size of the HTML element, based on specified parameters for width and height
3
New cards
transform
scaleX(n) Which transform value changes the HTML element's width
4
New cards
transform
scaleY(n) Which transform value changes the HTML element's height
5
New cards
transform
matrix(n,n,n,n,n,n) Which transform value combines all of the 2D transform methods into one
6
New cards
transform
translate(x,y) Which transform value moves the HTML element from its current position, based on the specified parameters for the left and top position
7
New cards
element[attribute$\=value]
Which selector targets every instance of a specified HTML element whose specified attribute ends with the specified value?
8
New cards
element[attribute*\=value]
Which selector targets every instance of a specified HTML element whose specified attribute contains the specified substring value?
9
New cards
element[attribute^\=value]
Which selector targets every instance of a specified HTML element whose specified attribute begins with the specified value?
10
New cards
element:checked
Which selector targets every checked instance of a specified HTML element?
11
New cards
element:disabled
Which selector targets every disabled instance of a specified HTML element?
12
New cards
element:enabled
Which selector targets every enabled instance of a specified HTML element?
13
New cards
element:first-of-type
Which selector targets every instance of a specified HTML element that is the first of its parent?
14
New cards
element:last-of-type
Which selector targets every instance of a specified HTML element that is the last of its parent?
15
New cards
element1~element2
Which selector targets every instance of element2 that is preceded by an instance of element1?
16
New cards
background

17
New cards


18
New cards
Properties are in this order:

19
New cards
background: bg-color bg-image position/bg-size bg-repeat bg-origin bg-clip bg-attachment initial|inherit;
Which property allows you to set different background properties in one declaration?
20
New cards
background-clip

21
New cards


22
New cards
Key values for this property:

23
New cards
border-box - extends behind the border

24
New cards
padding-box - extends to the inside edge of the border

25
New cards
content-box - extends to the edge of the content box
Which property specifies whether the background extends into the border or not?
26
New cards
background-origin

27
New cards


28
New cards
Key values for this property:

29
New cards
padding-box - from the upper left corner of the padding edge

30
New cards
border-box - from the upper left corner of the border

31
New cards
content-box - from the upper left corner of the content
Which property positions the background-image relative to an element's border, padding or content?
32
New cards
background-size

33
New cards


34
New cards
Key values for this property:

35
New cards
length - specifies width and height in fixed units

36
New cards
percentage - specifies width and height in in relation to the parent element

37
New cards
cover - cover the entire container, even if it has to stretch the image or cut a little bit off one of the edges

38
New cards
contain - resize the background image to make sure the image is fully visible
Which property defines the size of background images?
39
New cards
border-image
Which property creates a border that uses an image instead of a line?
40
New cards
border-radius
Which property defines the shape or curve of a border around an HTML element?
41
New cards
box-shadow
Which property applies shadows to edges of HTML elements to create visual depth?
42
New cards
h-shadow and v-shadow
Which two values are required to create a box-shadow?
43
New cards
opacity
Which property specifies transparency for an HTML element?
44
New cards
resize
Which property defines whether an HTML element can be resized by the user and how it can be resized?
45
New cards
text-overflow
Which property cuts off, or clips, text that extends beyond its container?
46
New cards
text-shadow
Which property applies shadows to edges of text characters to create visual depth?
47
New cards
@font-face
Which rule allows developers to specify custom fonts?
48
New cards
font-family — specifies the font name

49
New cards
src — identifies the font file's location by URL
Which two properties are required to specify a custom font?
50
New cards
font-stretch
Which property specifies how the font should be stretched or spaced?
51
New cards
font-style
Which property specifies how the font should be styled vertical or slanted?
52
New cards
font-weight
Which property specifies the weight or thickness of each character in the font?
53
New cards
unicode-range
Which property specifies the range of UNICODE characters that should be downloaded for the font, based on availability?
54
New cards
hanging-punctuation
Which property specifies whether (and how) punctuation characters can appear outside the line box at the beginning or end of a full line of text?
55
New cards
punctuation-trim
Which property specifies whether (and how) punctuation characters can be trimmed or sized when they appear at the beginning or end of a line?
56
New cards
text-align-last
Which property specifies a justification style for the last line in a text block whose text-align property is set to "justify"?
57
New cards
text-emphasis
Which property applies emphasis style and color to an HTML element's text in a single declaration?
58
New cards
text-justify
Which property specifies a justification style for text whose text-align property is set to "justify"?
59
New cards
text-wrap
Which property specifies whether lines of text in a text area can break, and where a line can be broken. This property is no longer supported?
60
New cards
word-break

61
New cards


62
New cards
Key values for this property:

63
New cards
break-all - word may be broken at any character

64
New cards
break-word - word may be broken at arbitrary points
Which property specifies whether lines of text in a text area can break, and where a line can be broken?
65
New cards
word-wrap

66
New cards


67
New cards
Key values for this property:

68
New cards
normal - Break words only at allowed break points

69
New cards
break-word - Allows unbreakable words to be broken
Which property specifies that long words in a text area may be broken without a hyphen and wrap to the next line?
70
New cards
transform
Which property applies a 2D or 3D transformation to an HTML element, including rotating, moving, skewing, scaling and so forth?
71
New cards
transform-origin
Which property allows you to change a transformed HTML element's position?
72
New cards
transform-style
Which property specifies whether child elements will retain the parent element's position in 3D space?
73
New cards
perspective-origin
Which transform value specifies the bottom position of a 3D element?
74
New cards
backface-visibility
Which transform value defines whether or not an element is visible when it is rotated to face away from the viewer?
75
New cards
transform:rotate(angle)
Which transform value rotates the HTML element clockwise at the specified degree?
76
New cards
transform:scale(x,y)
Which transform value increases or decreases the size of the HTML element, based on specified parameters for width and height?
77
New cards
transform:scaleX(n)
Which transform value changes the HTML element's width?
78
New cards
transform:scaleY(n)
Which transform value changes the HTML element's height?
79
New cards
transform:matrix(n,n,n,n,n,n)
Which transform value combines all of the 2D transform methods into one?
80
New cards
transform:translate(x,y)
Which transform value moves the HTML element from its current position, based on the specified parameters for the left and top position?
81
New cards
transform:translateX(n)
Which transform value moves the HTML element horizontally?
82
New cards
transform:translateY(n)
Which transform value moves the HTML element vertically?
83
New cards
transform:skew(x-angle,y-angle)
Which transform value turns or skews the HTML element to a specified angle, based on the specified parameters for the horizontal and vertical lines?
84
New cards
transform:skewX(angle)
Which transform value turns or skews the HTML element to a specified angle along its X-axis?
85
New cards
transform:skewY(angle)
Which transform value turns or skews the HTML element to a specified angle along its Y-axis?
86
New cards
transform:rotateX(angle)
Which transform value rotates the HTML element around its X-axis at the specified degree?
87
New cards
transform:rotateY(angle)
Which transform value rotates the HTML element around its Y-axis at the specified degree?
88
New cards
transform:rotateZ(angle)
Which transform value rotates the HTML element around its Z-axis at the specified degree?
89
New cards
transform:rotate3d(x,y,z,angle)
Which transform value defines a 3D rotation by specifying the degree for rotation for all axes?
90
New cards
transform:scale3d(x,y,z)
Which transform value increases or decreases the size of the HTML element, based on specified parameters for width, height and depth?
91
New cards
transform:scaleX(x)
Which transform value defines a 3D scale transformation by specifying a value for the X-axis?
92
New cards
transform:scaleY(y)
Which transform value defines a 3D scale transformation by specifying a value for the Y-axis?
93
New cards
transform:scaleZ(z)
Which transform value defines a 3D scale transformation by specifying a value for the Z-axis?
94
New cards
transform:translate3d(x,y,z)
Which transform value defines a 3D translation using specified parameters for positions on the X-axis, Y-axis and Z-axis?
95
New cards
transform:translateX(x)
Which transform value defines a 3D translation using only the value for the X-axis?
96
New cards
transform:translateY(y)
Which transform value defines a 3D translation using only the value for the Y-axis?
97
New cards
transform:translateZ(z)
Which transform value defines a 3D translation using only the value for the Z-axis?
98
New cards
transform:matrix3d(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n)
Which transform value defines a 3D transformation using a 4x4 matrix of 16 values?
99
New cards
transform:perspective(n)
Which transform value defines a perspective view for a 3D transformed element?
100
New cards
transition

Explore top flashcards