Exam 4: Graphic Design With Css Tutorial

arrow
  • Select Tags
search iconSearch Question
flashcardsStudy Flashcards
  • Select Tags

Identify the option that specifies whether an image scrolls with the content or is fixed in the following background property: background: color url(url) position / size repeat attachment origin clip;

Free
(Multiple Choice)
4.7/5
(34)
Correct Answer:
Verified

D

The sizing keyword auto tells the browser to resize an image to cover all of the element background while still retaining the image proportions.

Free
(True/False)
4.9/5
(36)
Correct Answer:
Verified

False

How are text shadows created?

Free
(Essay)
4.7/5
(43)
Correct Answer:
Verified

To give visual impact to a text on a web page, one can use Cascading Style Sheets (CSS) to add a shadow using the following text-shadow property: text-shadow: color offsetX offsetY blur ; where color is the shadow color, offsetX and offsetY are the distances of the shadow from the text in the horizontal and vertical directions, and blur defines the amount by which the shadow spreads out, creating a blurred effect. The shadow offset values are expressed so that positive values push the shadow to the right and down while negative values move the shadow to the left and up. The default blur value is 0, creating a shadow with distinct hard edges; as the blur value increases, the edge of the shadow becomes less distinct and blends more in the text background. The following style creates a red text shadow that is 10 pixels to the right and 5 pixels down from the text with blur of 8 pixels: text-shadow: red 10px 5px 8px; Multiple shadows can be added to text by including each shadow definition in the following comma-separated list: text-shadow: shadow1, shadow2, shadow3, … ; where shadow1, shadow2, shadow3 , and so on are shadows applied to the text with the first shadow listed displayed on top of subsequent shadows when they overlap. The following style rule creates two shadows with the first red shadow placed 10 pixels to the left and 5 pixels up from the text and the second gray shadow placed 3 pixels to the right and 4 pixels down from the text. Both shadows have a blur of 6 pixels: text-shadow: red -10px -5px 6px, gray 3px 4px 6px;

Identify the option that defines how positions are measured on the background in the following background property: background: color url(url) position / size repeat attachment origin clip;

(Multiple Choice)
4.9/5
(39)

Each hotspot within the map element is defined using the _____ element.

(Multiple Choice)
4.8/5
(33)

In the opacity property, if the value is 1, the object is completely transparent .

(True/False)
4.9/5
(37)

Identify the property that can be used to change the definition of an element's background.

(Multiple Choice)
4.8/5
(40)

Elliptical corners can be created by specifying the ratio of the horizontal radius to the vertical radius using the border-radius style.

(True/False)
4.8/5
(36)

Identify the CSS3 3D transformation function that shifts an object offX pixels horizontally, offY pixels vertically, and offZ pixels along the z -axis.

(Multiple Choice)
4.8/5
(37)

Even if the background images are hidden, the tiling process continues behind the page body.

(True/False)
4.8/5
(35)

Identify the coordinate attribute for the rectangular hotspots of an image.

(Multiple Choice)
4.9/5
(28)

In the opacity property, if the value is 0, it means an object is completely opaque.

(True/False)
4.8/5
(40)

The sizing keyword cover tells the browser to automatically set the width or height value based on the dimensions of the original image.

(True/False)
4.8/5
(38)

Identify a CSS3 2D transformation function that resizes an object by a factor of x horizontally.

(Multiple Choice)
4.8/5
(38)

To change the shadow size, the _____ parameter must be added to the box-shadow property, specifying the size of the shadow relative to the size of the object.

(Multiple Choice)
4.9/5
(39)

When parameters of the radial-gradient function are omitted, they take their default values.

(True/False)
4.8/5
(39)

Identify a true statement about the figcaption element.

(Multiple Choice)
4.7/5
(40)

Which of the following Cascading Style Sheets (CSS) 3 filters applies transparency to an image?

(Multiple Choice)
4.9/5
(42)

Scott works for an online retailer and has to format the border around each element on their web page. He has to set the border design and the border color for each element. He needs to understand how the appearance and color of the border can be defined. Scott wants to use the color gray for the top and left borders and black for the right and bottom borders for an element. Which of the following should he use to define this?

(Multiple Choice)
4.8/5
(36)

In the background-attachment property, the fixed type sets the background to scroll with element content.

(True/False)
4.8/5
(35)
Showing 1 - 20 of 87
close modal

Filters

  • Essay(0)
  • Multiple Choice(0)
  • Short Answer(0)
  • True False(0)
  • Matching(0)