Home / CSE / CSS - CS :: Basic CSS

CSE :: CSS - CS

  1. ________ first became a Candidate Recommendation on February 25, 2004, but it was reverted to a Working Draft on June 13, 2005 for further review.

  2. A.

     CSS level 1

    B.

     CSS level 2

    C.

     CSS level 3

    D.

     CSS level 2.1


  3. There is no single, integrated ____________________ because it is split into separate modules.

  4. A.

     CSS1 specification

    B.

     CSS2 specification

    C.

     CSS3 specification

    D.

     CSS4 specification


  5. Unlike CSS 2, which is a large single specification defining various features?

  6. A.

     CSS level 1

    B.

     CSS level 2

    C.

     CSS level 3

    D.

     CSS level 2.1


  7. ___________ describes CSS properties to manipulate the position of “ruby”, which are small annotations on top of or next to words, especially common in Chinese and Japanese.

  8. A.

     align

    B.

     ruby

    C.

     lang

    D.

     text-align


  9. ___________ has a grammar but unlike traditional (X)HTML it is not defined with a document type definition.

  10. A.

     CSS 1

    B.

     CSS 2

    C.

     CSS 2.1

    D.

     CSS 3


  11. What will happen in this case?
    h1 {color: red text-decoration: underline; font-style: italic;}

  12. A.

     color: red, text-decoration: underline and font-style: italic all works

    B.

     text-decoration: underline and font-style: italic works

    C.

     color: red, text-decoration: underline works

    D.

     only font-style: italic works


  13. What will happen in this case?
    h1 {color: "green";}

  14. A.

     heading becomes green

    B.

     heading becomes dark-green

    C.

     error occors

    D.

     nothings happen


  15. Which of the following is the correct way to applying style to a document?

  16. A.

     Use an external style sheet, either by importing it or by linking to it

    B.

     Directly embed a document-wide style in the head element of the document

    C.

     Set an inline style rule using the style attribute directly on an element

    D.

     All of the mentioned


  17. What does screen media type is used for?

  18. A.

     For use with all devices

    B.

     For use with handheld devices

    C.

     For use with color computer screens

    D.

     For use with television-type devices


  19. For Inline Style don’t need to reapply style information throughout the document and outside documents.State true or false.

  20. A.

     True

    B.

     False