Web1 Chp-8 Quiz – Flashcards
Unlock all answers in this set
Unlock answersquestion
            A table with a width set to 600 pixels will look _______ on a monitor with resolution set to 640 x 480 than on a monitor with resolution set to 1024 x 768
answer
        larger
question
            Use the _____ tag pair to begin and end a table row.
answer  
        question
            Screen readers and other assistive technologies typically access a table in a linear manner - that is, they "read" the table row by row.
answer
        True
question
            To create a new class in your CSS file to set a background color for a row you could use the following .altrow {background-color:#CCAA66; }
answer
        True
question
            The colspan attribute of the td tag specifies the number of columns that a cell will occupy.
answer
        True
question
            Use the ______ attribute to configure the width of a table border.
answer
        border
question
            To increase the accessibility of tables, one should use the summary attribute of the eleble element to provide an overview of the table contents.
answer
        True
question
            Use _______ element to indicate column or row headings.
answer
        
                
            
                
            
                
            
                
            
                
            
                
            
                
             
question
            To define the distance between the cell text and the cell border in a table, use the ____ attribute.
answer
        cellpadding
question
            Use the ________ tag pair to configure a table head row group.
answer
         .. 
question
            When specifying the table, td, and th selectors in a CSS file, do not specify any punctuation marks before the selectors (such as # or .)
answer
        True
question
            Table cells usually contain other HTML tags such as paragraphs, headings, and tables.
answer
        True
question
            Choose the best answer below to the following question: Is the following CSS code valid?  table { border: 2px #000000 solid;  border-collapse: collapse;
answer
        Yes
question
            The valign attribute of the table element specifies the alignment of the table with the values right, center, and left.
answer
        False
question
            Use the headers attribute on the ___ tag to correspond to the id attribute on a ___ tag
answer,  
        
                
             
question
Use the ______ attribute on a  element to associate it with a table heading cell.
            
            
                
            
                
            
                
            
                
             
answer
        
                headers (remember the "ERS". It's headers, not heading.)
question
            An HTML table is comprised of ____ and ______.
answer
        rows and columns
question
            The __________ attribute of the anchor tag can cause the new web page to open in its own browser window.
answer
        target
question
            Use the CSS ______ property to configure the cellpadding of a table.
answer
        padding
question
            To define the distance between the edges of each cell in a table use the _____ attribute.
answer
        cellspacing
question
The technique used to nest a table within another is to place the interior table within a table cell () of the exterior table.
            
            
                
             
answer
        
                True
question
            Common uses of tables on web pages include:
answer
        Both of these... (Formatting the layout of an entire page, Formatting a group of information)
question
Is the following XHTML code valid? 
            
