Css miscellaneous


  1. ____________ property defines whether table cell borders are connected or separate.











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: E

    border-collapse roperty defines whether table cell borders are connected or separate.


  1. _____________ property defines the space between cells in a table.











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: C

    border-spacing: non-negative length(s) | inherit



  1. ____________ property sets the coordinates of the clipping shape that exposes or hides the content of absolutely positioned elements











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: C

    clip: rect(coordinates) | auto | inherit


  1. The _____________ property allows us to include the padding and border in an element’s total width and height.











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: A

    .div1 {
    box-sizing: border-box;
    }



  1. The ___________ property specifies if/how an element is displayed.











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: B

    h1.hidden {
    display: none;
    }