Ch. 6 CIS3900
which of the following pseudo-classes is the default state for a hyperlink that has been clicked?
:visited
configure a style with a(n) _______if the style will only apply to one element on a page
id
if an element is configured with float: right; the other content on the page will appear to its _________
left
which property and value are used to configure an unordered list item with a square list marker?
list-style-type: square;
When using the box model, the ________ is always transparent.
margin
the______is always transparent
margin
which of the following, from outermost to innermost, are components of the box model?
margin, border, padding ,content
Which of the following is the rendering flow used by a browser by default?
normal flow
The box model consists of a content area surrounded by:
padding,border, and margin
which of the following properties can be used to clear a float?
clear or overflow
which of the following configures a class called side to float to the left?
.side { float: left;}
Choose the example below that configures a comment in CSS.
/*comment*/
The default value for the border property for an element is:
0 pixels
the______pseud-class can be used to modify the display of a hyperlink when a mouse pointer passes over it.
:hover
use the HTML5_______element to configure an article or blog post that can stand on its own
article
which HTML5 element has the purpose of providing tangential content
aside
To apply a style to one or more elements on a web page, configure a CSS ________.
class
which of the following causes an element to display as a block of content with white space above and below?
display: block;
which of the following is an example of using a descendant selector to configure the anchor tags within the nav element?
nav a
Which of the following can be used to change the location of an element slightly in relation to where it would otherwise appear on the page?
relative positioning