Section 1

Preview this deck

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

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

0

Favorites

0

Last updated

6 years ago

Date created

Mar 1, 2020

Cards (19)

Section 1

(19 cards)

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

Front

padding

Back

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

Front

normal

Back

What is the correct order to code CSS pseudo-classes?

Front

link,visited,hover,active

Back

use the _____ or _____ property to clear a float

Front

clear or overflow

Back

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

Front

header

Back

the ____ pseudo-class configures the appearance of the hyperlink before it is clicked

Front

link

Back

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

Front

position:absolute

Back

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

Front

relative

Back

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

Front

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

Back

Code a descendent selector that configures the anchor tags with the nav element.

Front

nav a

Back

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

Front

class

Back

what code configures a container to clear all floated elements that are within the container?

Front

overflow:auto

Back

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

Front

float:right

Back

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

Front

padding

Back

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

Front

margin

Back

Use a ... when you want to specify an element within the context of its container (parent) element.

Front

CSS descendant selector

Back

What is the HTML5 element that is used to configure an area on a web page that can stand on its own and could potentially be syndicated? Intended to present an independent entry such as a blog entry.

Front

article

Back

Use an id to configure a style when:

Front

the style will apply to only one element on a page

Back

code a descendant selector that configures the anchor tags within the element assigned to an id named special

Front

#special a

Back