IST226Test2Review Flashcards
Use__________ the CSS property to configure the cellpadding of a table.
padding
When do you need to use a fully qualified URL in a hyperlink?
when linking to a page on an external website
Which of the following CSS3 pseudo-elements could be used to apply styles to the last row of a table?
:last-of-type
What term is used to describe image file that contains multiple small graphics?
sprite
Choose the item below that is not an HTML5 element:
article, wrapper, footer, figcaption
wrapper
The _____ is an attribute of the tag that provides for accessibility.
summary
The _________ HTML5 element is used to configure the main navigation area on a web page.
nav
Select a recommendation for mobile web design from the choices listed below.
Use single column, large images, pt for fonts sizes, none of these
Use single column
The box model consists of a content area surrounded by:
padding, border and margin
The W3C’s concept of “One Web” relates to providing a single resource that is configured for optimal display on multiple types of devices.
True
Choose the example below that configures a comment in CSS.
/comment/
Use the ___ or ______ property to clear a float.
clear or overflow
The ______ attribute indicates if a style sheet configures for screen display of the printed page.
media
Use the ___________ property along with the left, right, and /or top property to precisely configure the position of an element.
position:absolute;
Which of the following configures a margin for an element with the folloing values: top margin 30 pixels, left margin 150 pixels, right margin 0 pixels, and bottom margin 0 pixels
margin:30px 0 0 150px
Is it possible to use CSS to configure page breaks in a printed web page.
True
The _______ pseudo-class configures the appearance of the hyperlink before it is clicked.
link
the ______ HTML5 element is used to configure the top logo area on a web page.
header
To apply a style to one or more elements on a web page, configure a CSS
class
How would you link t the named fragment #school on the page resume.html from the home page of the site?
a href=”resume.html#school”>Educational Background /a
Use the __________ tag pair to begin and end a table row.
tr /tr
Use ______ element to indicate column or row headings.
th
Include the keyword _________ in a media query to cause older, non-supporting browsers to ignore the media query.
only
An HTML table is comprised of _____ and ________.
rows and columns
Which of the following CSS3 pseudo-elements will be useful when configuring every other row of a table?
:nth-of-type(n)
Which pseudo-element can be used to generate content that precedes an element?
:before
The __________ property is used to modify the stacking order of elements on a web page.
z-index
From the choices below select the correct order to code CSS pseudo-classes.
link, visited, hover, active
A hyperlink with the phone: scheme may cause a web browser on a mobile device to initiate a phone call.
False
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; }