CSS Skills

Ace your homework & exams now with Quizwiz!

What is the difference between the following line-height settings? line-height: 20px; line-height: 2; a) The value of 20px will set the line-height to 20px. The value of 2 will set the line-height to twice the size of the corresponding font-size value. b) The value of 20px will set the line-height to 20px. The value of 2 is not valid. c) The value of 20px will set the line-height to 20px. The value of 2 will default to a value of 2px. d) The value of 20px will set the line-height to 20px. The value of 2 will set the line-height to 20% of the corresponding font-size value.

a) The value of 20px will set the line-height to 20px. The value of 2 will set the line-height to twice the size of the corresponding font-size value.

Which code would you use to absolutely position an element of the logo class? a) .logo { position: absolute; left: 100px; top: 150px; } b) .logo { position: absolute; margin-left: 100px; margin-top: 150px; } c) .logo { position: absolute; padding-left: 100px; padding-top: 150px; } d) .logo { position: absolute; left-padding: 100px; top-padding: 150px; }

a) .logo { position: absolute; left: 100px; top: 150px; }

When elements within a container overlap, the z-index property can be used to indicate how those items are stacked on top of each other. Which set of statements is true? a) 1. Larger z-index values appear on top elements with a lower z-index value. 2. Negative and positive number can be used. 3. z-index can be used only on positioned elements. b) 1. Smaller z-index values appear on top of elements with a larger z-index value. 2. Negative and positive numbers can be used. 3. z-index can be used with or without positioned elements. c) 1. Smaller z-index values appear on top of elements with a larger z-index value. 2. Negative and positive number can be used. 3. z-index must also be used with positioned elements. d) 1. Larger z-index values appear on top of elements with a lower z-index value. 2. Only positive number can be used. 3. z-index must also be used with positioned elements.

a) 1. Larger z-index values appear on top elements with a lower z-index value. 2. Negative and positive number can be used. 3. z-index can be used only on positioned elements.

The flex-direction property is used to specify the direction that flex items are displayed. What are the values used to specify the direction of the items in the following examples? Example 1 A B C D Example 2 D C B A Example 3 A B C D Example 4 D C B A a) Example 1: flex-direction: row; Example 2: flex-direction: row-reverse; Example 3: flex-direction: column; Example 4: flex-direction: column-reverse; b) Example 1: flex-direction: row-reverse; Example 2: flex-direction: row; Example 3: flex-direction: column-reverse; Example 4: flex-direction: column; c) Example 1: flex-direction: row; Example 2: flex-direction: row-reverse; Example 3: flex-direction: column; Example 4: flex-direction: reverse-column; d) Example 1: flex-direction: column; Example 2: flex-direction: column-reverse; Example 3: flex-direction: row; Example 4: flex-direction: row-reverse;

a) Example 1: flex-direction: row; Example 2: flex-direction: row-reverse; Example 3: flex-direction: column; Example 4: flex-direction: column-reverse;

In the shorthand example below, which individual background properties are represented? background: blue url(image.jpg) no-repeat scroll 0px 0px; a) background-color: blue; background-image: url(image.jpg); background-repeat: no-repeat; background-attachment: scroll; background-position: 0px 0px; b) background-color: blue; background-img: url(image.jpg); background-position: no-repeat; background-scroll: scroll; background-size: 0px 0px; c) background-color: blue; background-src: url(image.jpg); background-repeat: no-repeat; background-wrap: scroll; background-position: 0px 0px; d) background-color: blue; background-src: url(image.jpg); background-repeat: no-repeat; background-scroll: scroll; background-position: 0px 0px;

a) background-color: blue; background-image: url(image.jpg); background-repeat: no-repeat; background-attachment: scroll; background-position: 0px 0px; - "background-attachment" sets whether a background image scrolls with the rest of the page, or is fixed.

What is the vertical gap between the two elements below? <div style="margin-bottom: 2rem;">Div 1</div> <div style="margin-top: 2rem;">Div 2</div> a) 2rem b) 32px c) 64px d) 4rem

a) 2rem => Margin collapsing - Two margins affecting the same space do not combine. - Only the larger of the two margins is applied. - Caused by: 1) Adjacent siblings. 2) No content separating parent and descendants. 3) Empty blocks.

If the width of the container is 500 pixels, what would the width of the three columns be in this layout? .grid { display: grid; grid-template-columns: 50px 1fr 2fr; } a) 50px, 150px, 300px b) 50px, 200px, 300px c) 50px, 100px, 200px d) 50px, 50px, 100px

a) 50px, 150px, 300px - Fractional units (fr) divides the remaining space. - Since "px" is absolute, the remaining space is: [width] - [#px] == [500px] - [50px]

What is the ::placeholder pseudo-element used for? a) It is used to format the appearance of placeholder text within a form control. b) It specifies the default input text for a form control. c) It writes text content into a hyperlink tooltip. d) It writes text content into any page element.

a) It is used to format the appearance of placeholder text within a form control.

When elements overlap, they are ordered on the z-axis (i.e., which element covers another). The z-index property can be used to specify the z-order of overlapping elements. Which set of statements about the z-index property are true? a) Larger z-index values appear on top of elements with a lower z-index value. Negative and positive numbers can be used. z-index can only be used on positioned elements. b) Smaller z-index values appear on top of elements with a larger z-index value. Negative and positive numbers can be used. z-index must also be used with positioned elements. c) Larger z-index values appear on top of elements with a lower z-index value. Only positive numbers can be used. z-index must also be used with positioned elements. d) Smaller z-index values appear on top of elements with a larger z-index value. Negative and positive numbers can be used. z-index can be used with or without positioned elements.

a) Larger z-index values appear on top of elements with a lower z-index value. Negative and positive numbers can be used. z-index can only be used on positioned elements. - Value can be positive or negative.

What is not true about class selectors? a) Only one class value can be assigned to an element. b) An element can have multiple class value. c) Class selectors are marked with a leading period. d) More than one element can have the same class value.

a) Only one class value can be assigned to an element.

The calc() CSS function is often used for calculating relative values. In the example below, what is the specified margin-left value? .example { margin-left: calc(5% + 5px); } a) The left margin value is equal to 5% of its parents element's width plus 5px b) The left margin value is equal to 5% of the viewport width plus 5px c) The left margin value is equal to 5% of the closest positioned element's width plus 5px d) The left margin value is equal to 5% of the selected element's width (.example) plus 5px

a) The left margin value is equal to 5% of its parents element's width plus 5px

In the following media query example, what conditions are being targeted? @media (min-width: 1024px), screen and (orientation: landscape) { ... } a) The rule will apply to a device that has either a width of 1024px or wider, or is a screen device in landscape mode. b) The rule will apply to a device that has a width of 1024px or narrower and is a screen device in landscape mode. c) The rule will apply to a device that has a width of 1024px or wider and is a screen device in landscape mode. d) The rule will apply to a device that has a width of 1024px or narrower, or is a screen device in landscape mode.

a) The rule will apply to a device that has either a width of 1024px or wider, or is a screen device in landscape mode. - Commas === OR

What is the CSS selector for an <a> tag containing the title attribute? a) a[title] b) a > title c) a=title d) a.title

a) a[title]

Using an attribute selector, how would you select an <a> element with a "title" attribute? a) a[title]{...} b) a > title {...} c) a.title {...} d) a=title {...}

a) a[title]{...}

When using the Flexbox method, what property and value is used to display flex items in a column? a) flex-flow: column; or flex-direction: column b) flex-flow: column; c) flex-column: auto; d) flex-direction: column;

a) flex-flow: column; or flex-direction: column => Flex-flow - Shorthand property for flex-direction and flex-wrap. - Example { flex-flow: row-reverse wrap; }

What is the recommended name you should give the folder that holds your project's images? a) images b) #images c) Images d) my images

a) images

When using flexbox, the "justify-content" property can be used to distribute the space between the flex items along the main axis. Which value should be used to evenly distribute the flex items within the container shown below? | 1 2 3 4 | a) justify-content: space-around; b) justify-content: center; c) justify-content: auto; d) justify-content: space-between;

a) justify-content: space-around;

How would you make the first letter of every paragraph on the page red? a) p::first-letter { color: red; } b) p:first-letter { color: red; } c) first-letter::p { color: red; } d) first-letter:p { color: red; }

a) p::first-letter { color: red; } - Pseudo element selector (::). - The element to the right doesn't exist in the normal DOM, but can be selected.

What is not a valid way of declaring a padding value of 10 pixels on the top and bottom, and 0 pixels on the left and right? a) padding: 10px 10px 0px 0px; b) padding: 10px 0px; c) padding: 10px 0; d) padding: 10px 0px 10px 0px;

a) padding: 10px 10px 0px 0px; - Values are clockwise => T R B L.

There are many properties that can be used to align elements and create page layouts such as float, position, flexbox and grid. Of these four properties, which one should be used to align a global navigation bar which stays fixed at the top of the page? a) position b) flexbox c) grid d) float

a) position

Which style places an element at a fixed location within its container? a) position: absolute; b) display: flex; c) display: block; d) float: left;

a) position: absolute;

CSS transform properties are used to change the shape and position of the selected objects. The transform-origin property specifies the location of the element's transformation origin. By default, what is the location of the origin? a) the top left corner of the element b) the center of the element c) the top right corner of the element d) the bottom left of the element

a) the top left corner of the element

What is the line-height property primarily used for? a) to control the height of the space between two lines of content b) to control the height of the space between heading elements c) to control the height of the character size d) to control the width of the space between characters

a) to control the height of the space between two lines of content

In Chrome's Developer Tools view, where are the default styles listed? a) under the User Agent Stylesheet section on the right b) in the third panel under the Layout tab c) under the HTML view on the left d) in the middle panel

a) under the User Agent Stylesheet section on the right

In this example, what is the selector, property, and value? p { color: #000000; } a) "p" is the selector "#000000" is the property "color" is the value b) "p" is the selector "color" is the property "#000000" is the value c) "color" is the selector "#000000" is the property "#p" is the value d) "color" is the selector "p" is the property "#000000" is the value

b) "p" is the selector "color" is the property "#000000" is the value

What is true of block and inline elements? (Alternative: Which statement about block and inline elements is true?) a) By default, block elements are the same height and width as the content container between their tags; inline elements span the entire width of its container. b) By default, block elements span the entire width of its container; inline elements are the same height and width as the content contained between their tags. c) A <nav> element is an example of an inline element. <header> is an example of a block element. d) A <span> is an example of a block element. <div> is an example of an inline element.

b) By default, block elements span the entire width of its container; inline elements are the same height and width as the content contained between their tags.

What is an advantage of using inline CSS? a) It is easier to manage. b) It is easier to add multiple styles through it. c) It can be used to quickly test local CSS overrides. d) It reduces conflict with other CSS definition methods.

b) It is easier to add multiple styles through it.

What is the difference between the margin and padding properties? a) Margin adds space around and inside of an element; padding adds space only inside of an element. b) Margin adds space around an element; padding adds space inside of an element. c) Margin adds a line around an element, padding adds space inside of an element. d) Margin adds space inside of an element, padding adds space around an element.

b) Margin adds space around an element; padding adds space inside of an element.

There are two sibling combinators that can be used to select elements contained within the same parent element; the general sibling combinator (~) and the adjacent sibling combinator (+). Referring to example below, which elements will the styles be applied to? h2 ~ p { color: blue; } h2 + p { background: beige; } <section> <p>paragraph 1</p> <h2>Heading</h2> <p>paragraph 2</p> <p>paragraph 3</p> </section> a) Paragraphs 2 and 3 will be blue. The h2 and paragraph 2 will have a beige background. b) Paragraphs 2, and 3 will be blue, and paragraph 2 will have a beige background. c) Paragraph 2 will be blue. Paragraphs 2 and 3 will have a beige background.

b) Paragraphs 2, and 3 will be blue, and paragraph 2 will have a beige background. - Tilde (~) => All <p> after an <h2>. - Plus (+) => Only the <p> that follows directly after an <h2>, not including the <h2>.

CSS grid introduced a new length unit, fr, to create flexible grid tracks. Referring to the code sample below, what will the widths of the three columns be? .grid { display: grid; width: 500px; grid-template-columns: 50px 1fr 2fr; } a) The first column will have a width of 50px. The second column will be 50px wide and the third column will be 100px wide. b) The first column will have a width of 50px. The second column will be 150px wide and the third column will be 300px wide. c) The first column will have a width of 50px. The second column will be 300px wide and the third column will be 150px wide. d) The first column will have a width of 50px. The second column will be 500px wide and the third column will be 1000px wide.

b) The first column will have a width of 50px. The second column will be 150px wide and the third column will be 300px wide. - Fractional units (fr) divides the remaining space. - Since "px" is absolute, the remaining space is: [width] - [#px] == [500px] - [50px]

What selector and property would you use to scale an element to be 50% smaller on hover? a) element:hover {scale: 0.5;} b) element:hover {transform: scale(0.5);} c) element:hover {scale: 50%;} d) element:hover {transform: scale(50%);}

b) element:hover {transform: scale(0.5);}

Which type of declaration will take precedence? a) any declarations in user-agent stylesheets b) important declarations in user stylesheets c) normal declarations in author stylesheets d) important declarations in author stylesheets

b) important declarations in user stylesheets => Stylesheets - User-agent stylesheets are default styles defined by the browser. - Author stylesheets are ones defined by the creator of the page. - User stylesheets are ones defined by the user/reader. => Cascading Order (low to high priority) 1) user agent -- normal 2) user -- normal 3) author -- normal 4) animations 5) author -- !important 6) user -- !important 7) user agent -- !important 8) transitions

By default, a background image will repeat _ a) only if the background-repeat property is set to repeat b) indefinitely, vertically, and horizontally c) indefinitely on the horizontal axis only d) once, on the x and y axis

b) indefinitely, vertically, and horizontally

Using the :nth-child pseudo class, what would be the most efficient way to style every third item in a list, no matter how many items are present, starting with item 2? a) li:nth-child(3 + 2n) { margin: 0 5 px; } b) li:nth-child(3n + 2) { margin: 0 5 px; } c) li:nth-child(2), li:nth-child(5), li:nth-child(8) { margin: 0 5 px; } d) li:nth-child(2n + 3) { margin: 0 5 px; }

b) li:nth-child(3n + 2) { margin: 0 5 px; } - (3n + 2) => every third, starting at two

The values for the font-weight property can be keywords or numbers. For each numbered value below, what is the associated keyword? font-weight: 400; font-weight: 700; a) bold; normal b) normal; bold c) light; normal d) normal; bolder

b) normal; bold => Font-weight values - 100 -- Thin - 200 -- Extra Light - 300 -- Light - 400 -- Normal/Default - 500 -- Medium - 600 -- Semi Bold - 700 -- Bold - 800 -- Extra/Ultra Bold - 900 -- Black/Heavy - 950 -- Extra/Ultra Black => Relative Font-weight values - Lighter - Bolder

When using position: fixed, what will the element always be positioned relative to? a) the closest element with position: relative b) the viewport c) the parent element d) the wrapper element

b) the viewport

When would you use the @font-face method? a) to set the font size of the text b) to load custom fonts into stylesheet c) to change the name of the font declared in the font-family d) to set the color of the text

b) to load custom fonts into stylesheet

In the following example, according to cascading and specificity rules, what color will the link be? .example { color: yellow; } ul li a { color: blue; } ul a { color: green; } a { color: red; } <ul> <li><a href="#" class="example">link</a></li> <li>list item</li> <li>list item</li> </ul> a) green b) yellow c) blue d) red

b) yellow - Specificity > Cascading.

What element(s) do the following selectors match to? 1) .nav { ...; } 2) nav { ...; } 3) #nav { ...; } a) 1. An element with an ID of "nav" 2. A nav element 3. An element with a class of "nav" b) They all target the same nav element. c) 1. An element with an class of "nav" 2. A nav element 3. An element with a id of "nav" d) 1. An element with an class of "nav" 2. A nav element 3. An div with a id of "nav"

c) 1. An element with an class of "nav" 2. A nav element 3. An element with a id of "nav"

In the following example, which selector has the highest specificity ranking for selecting the anchor link element? a) ul li a b) a c) .example a d) div a

c) .example a - Uses a class selector

You have a large image that needs to fit into a 400 x 200 pixel area. What should you resize the image to if your users are using Retina displays? a) 2000 x 1400 pixels b) 200 x 100 pixels c) 800 x 400 pixels d) 400 x 200 pixels

c) 800 x 400 pixels - Retina Display is a brand name display by Apple that has a higher pixel density than normal displays.

There are many advantages to using icon fonts. What is one of those advantages? a) Icon fonts increase accessibility. b) Icon fonts can be used to replace custom fonts. c) Icon fonts can be styled with typography related properties such as font-size and color. d) Icon fonts are also web safe fonts.

c) Icon fonts can be styled with typography related properties such as font-size and color. - Icon fonts refers to icons.

When adding transparency styles, what is the difference between using the opacity property versus the background property with an rgba() value? a) Opacity specifies the level of transparency of the child elements. Background with an rgba() value applies transparency to the background color only. b) Opacity applies transparency to the background color only. Background with an rgba() value specifies the level of transparency of an element, as a whole, including its content. c) Opacity specifies the level of transparency of an element, including its content. Background with an rgba() value applies transparency to the background color only. d) Opacity applies transparency to the parent and child elements. Background with an rgba() value specifies the level of transparency of the parent element only.

c) Opacity specifies the level of transparency of an element, including its content. Background with an rgba() value applies transparency to the background color only.

In the following example, what color will paragraph one and paragraph two be? (Alternative: In this example, what color will paragraphs one and two be?) <section> <p>paragraph one</p> </section> <p>paragraph two</p> section p { color: red; } section + p { color: blue; } a) Paragraph one will be blue, paragraph two will be red. b) Both paragraphs will be blue. c) Paragraphs one will be red, paragraph two will be blue. d) Both paragraphs will be red.

c) Paragraphs one will be red, paragraph two will be blue. - section + p == section, p => this is less specific than "section p".

Which of the following is true of the SVG image format? (Alternative: Which statement about the SVG image format is true?) a) CSS can be applied to SVGs but JavaScript cannot be. b) SVGs work best for creating 3D graphics. c) SVGs can be created as a vector graphic or coded using SVG specific elements such as <svg>, <line>, and <ellipse>. d) SVGs are a HAML-based markup language for creating vector graphics.

c) SVGs can be created as a vector graphic or coded using SVG specific elements such as <svg>, <line>, and <ellipse>.

In the example below, when will the color pink be applied to the anchor element? a:active { color: pink; } a) The color of the link will display as pink after its been clicked or if the mouse is hovering over the link. b) The color of the link will display as pink on mouse hover. c) The color of the link will display as pink while the link is being clicked but before the mouse click is released. d) The color of the link will display as pink before it has been clicked.

c) The color of the link will display as pink while the link is being clicked but before the mouse click is released.

Which selector would select only internal links within the current page? a) a[href="#"] {...} b) a[href~="#"] c) a[href^="#"] d) a[href="#"]

c) a[href^="#"]

What is the difference between display:none and visibility:hidden? a) Both will hide the element on the page, but display:none has greater browser support. visibility:hidden is a new property and does not have the best browser support b) display:none hides the elements but maintains the space it previously occupied. visibility:hidden will hide the element from view and remove it from the normal flow of the document c) display:none hides the element from view and removes it from the normal flow of the document. visibility:hidden will hide the element but maintains the space it previously occupied. d) There is no difference; both will hide the element on the page

c) display:none hides the element from view and removes it from the normal flow of the document. visibility:hidden will hide the element but maintains the space it previously occupied.

Which choice is not a valid value for the font-style property? a) normal b) italic c) none d) oblique

c) none

When using media queries, media types are used to target a device category. Which choice lists current valid media types? a) print, screen, aural b) print, screen, television c) print, screen, speech d) print, speech, device

c) print, screen, speech - print -- used for printers - screen -- used for computers, tablets, smart-phones, etc. - speech -- used for screenreaders that "reads" the page out load.

In this example, what color will Paragraph 1 be? p:first-of-type { color: red; } p { color: blue; } .container { color: yellow; } p:first-child { color: green; } <div class="container"> <h1>Heading</h1> <p>Paragraph1</p> <p>Paragraph2</p> </div> a) blue b) green c) red d) yellow

c) red

What are three valid ways of adding CSS to an HTML page? a) 1. External; CSS is written in a separate file. 2. Inline; CSS is added to the <head> of the HTML page. 3. Internal; CSS is included within the HTML tags. b) 1. External; CSS is written in a separate file and is linked within the <header> element of the HTML file. 2. Inline; CSS is added to the HTML tag. 3. Internal; CSS is included within the <header> element of the HTML file. c) 1. External; CSS is written in a separate file and is linked within the <head> element of the HTML file. 2. Internal; CSS is included within the <header> element of the HTML file. 3. Inline; CSS is added to the HTML tag. d) 1. External; CSS is written in a separate file and is linked within the <head> element of the HTML file. 2. Inline; CSS is added to the HTML tag. 3. Internal; CSS is included within the <head> element of the HTML file.

d) 1. External; CSS is written in a separate file and is linked within the <head> element of the HTML file. 2. Inline; CSS is added to the HTML tag. 3. Internal; CSS is included within the <head> element of the HTML file.

Three of these choices are true about class selectors. Which is NOT true? a) Multiple classes can be used within the same element. b) The same class can be used multiple times per page. c) Class selectors with a leading period d) Classes can be used multiple times per page but not within the same element.

d) Classes can be used multiple times per page but not within the same element.

Which statement regarding icon fonts is true? a) Icon fonts can be inserted only using JavaScript. b) Icon fonts are inserted as inline images. c) Icon fonts require browser extensions. d) Icon fonts can be styled with typography-related properties such as font-size and color.

d) Icon fonts can be styled with typography-related properties such as font-size and color. - Icon fonts refers to icons.

Which statement is true of the single colon (:) or double colon (::) notations for pseudo-elements-for example, ::before and :before? a) All browsers support single and double colons for new and older pseudo-elements. So you can use either but it is convention to use single colons for consistency. b) In CSS3, the double colon notation (::) was introduced to create a consistency between pseudo-elements from pseudo-classes. For newer browsers, use the double colon notation. For IE8 and below, using single colon notation (:). c) Only the new CSS3 pseudo-elements require the double colon notation while the CSS2 pseudo-elements do not. d) In CSS3, the double colon notation (::) was introduced to differentiate pseudo-elements from pseudo-classes. However, modern browsers support both formats. Older browsers such as IE8 and below do not.

d) In CSS3, the double colon notation (::) was introduced to differentiate pseudo-elements from pseudo-classes. However, modern browsers support both formats. Older browsers such as IE8 and below do not.

What is the rem unit based on? a) The rem unit is relative to the font-size of the p element. b) You have to set the value for the rem unit by writing a declaration such as rem { font-size: 1 Spx; } c) The rem unit is relative to the font-size of the containing (parent) element. d) The rem unit is relative to the font-size of the root element of the page.

d) The rem unit is relative to the font-size of the root element of the page.

Is there an error in this code? If so, find the best description of the problem @font-face { font-family: 'Avenir', sans-serif; src: url('avenir.woff2') format('woff2'), url('avenir.woff') format('woff'); } a) The font file formats are not supported in modern browsers. b) The src attribute requires a comma between the URL and format values. c) There are no errors in the example. d) The sans-serif inclusion is problematic.

d) The sans-serif inclusion is problematic.

To change the color of an SVG using CSS, which property is used? a) Use background-fill to set the color inside the object and stroke or border to set the color of the border. b) The color cannot be changed with CSS. c) Use fill or background to set the color inside the object and stroke to set the color of the border. d) Use fill to set the color inside the object and stroke to set the color of the border.

d) Use fill to set the color inside the object and stroke to set the color of the border. - The fill property is used specifically to set the color of an SVG shape. - The stroke property paints along the outline of the given graphical element.

CSS grid and flexbox are now becoming a more popular way to create page layouts. However, floats are still commonly used, especially when working with an older code base, or if you need to support older browser version. What are two valid techniques used to clear floats? a) Use the "clearfix hack" on the floated element and add a float to the parent element. b) Use the overflow property on the floated element or the "clearfix hack" on either the floated or parent element. c) Use the "clearfix hack" on the floated element or the overflow property on the parent element. d) Use the "clearfix hack" on the parent element or use the overflow property with a value other than "visible."

d) Use the "clearfix hack" on the parent element or use the overflow property with a value other than "visible." - Clearfix solves a persistent bug that occurs when two floated elements are stacked next to each other, causing the parent element to have a height of 0. - Clearfix => .clearfix { overflow: auto } - Clearfix => .clearfix::after { content: ""; clear: both; display: table; }

Which choice would give a block element rounded corners? a) corner-radius: 10px; b) border-corner: 10px; c) corner-curve: 10px; d) border-radius: 10px;

d) border-radius: 10px;

Which of the following is not a valid color value? (Alternative: Which choice is not a valid color value?) a) color: #000 b) color: rgb(0,0,0) c) color: #000000 d) color: 000000

d) color: 000000

While HTML controls document structure, CSS controls ___. a) semantic meaning b) content meaning c) document structure d) content appearance

d) content appearance


Related study sets

Chapter 22 The Digestive System Mrs. Brown's Class Wallace Community College

View Set

Homework Ch. 10: Earth and Space Science Dr. Wang - Geologic Time

View Set

Mastering Biology RQ 19: Endosymbiosis and Eukaryote Evolution

View Set

A&P II Mastering A&P Chapter 23 homework

View Set

Chapter 10 Antimicrobial Treatment

View Set

Learning System RN - Fundamentals

View Set