Css miscellaneous
- ____________ property defines whether table cell borders are connected or separate.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: E
border-collapse roperty defines whether table cell borders are connected or separate.
- _____________ property defines the space between cells in a table.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
border-spacing: non-negative length(s) | inherit
- ____________ property sets the coordinates of the clipping shape that exposes or hides the content of absolutely positioned elements
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
clip: rect(coordinates) | auto | inherit
- The _____________ property allows us to include the padding and border in an element’s total width and height.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
.div1 {
box-sizing: border-box;
}
- The ___________ property specifies if/how an element is displayed.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: B
h1.hidden {
display: none;
}