• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/30

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

30 Cards in this Set

  • Front
  • Back

To apply a style to one or more elements on a web page, configure a CSS ________.

class

The box model consists of a content area surrounded by:

(PBM)


padding, border, and margin

The ________ is the area between the content and the border.

padding

________ flow displays the elements on the page in the order they appear in the web page source code.

Normal



Use ________ positioning to slightly change the location of an element in relation to where it would otherwise appear when rendered by a browser.

relative

The CSS to create the class called myfloat that floats to the right of the other page content, has a 10px margin, and a solid border is:

.myfloat { float:right; margin:10px; border: 1px solid #000000; }

The default value for the border property for an element is:

0 pixels

When using the box model, the ________ is always transparent.

margin

Use an id to configure a style when:

the style will apply to only one element on a page.

If an element is configured with ________ the other content on the page will appear to its left.

float:right;

Which of the following configures a margin for an element with the following values: top margin 30 pixels, left margin 150 pixels, right margin 0 pixels, and bottom margin 0 pixels?

margin:30px 0 0 150px;

Use the ________ property along with the left, right and/or top property to precisely configure the position of an element.

position:absolute;

Use the ________ or ________ property to clear a float.

clear or overflow

Choose the example below that configures a comment in CSS.

/* comment */

Choose the example below of a descendent selector that configures the anchor tags with the nav element.

nav a

Select the example below that could be used to clear a right float.

clear: right;

Select the example below that configures a container to clear all floated elements that are within the container.

overflow: auto;

When configuring the background color of an element, the background color is applied to both the content and ________ areas.

padding

Use the ________ property to configure an image to use as a bullet point in an unordered list.

list-style-image

From the choices below select the correct order to code CSS pseudo-classes.

(LVHA)


link, visited, hover, active

Set list-style-type to the value ________ to hide the display of the list markers on an ordered list.

none

The ________ pseudo-class configures the styles that will apply when the mouse is on a hyperlink.

hover

The ________ pseudo-class configures the appearance of the hyperlink before it is clicked.

link

Choose the HTML5 element below that is used to configure an area on a web

article

The ________ HTML5 element is used to configure the main navigation area on a web page.

nav

The ________ HTML5 element is used to configure the top logo area on a web page.

header

The ________ HTML5 element is used to tangential or supplemental content.

aside

Choose the item below that is not an HTML5 element.


Select one:




a. footer


b. figcaption


c. wrapper


d. article

wrapper

Choose the example below of a descendant selector that configures the anchor tags within the element assigned to the an id named special.

#special a

Use ________ positioning to configure the location of an element to remain the same and to not move even when the web page is scrolled within the browser viewport.

fixed