CSE MCQs :: CSS MCQs
- Which of the following css property is used to define a delay before an animation starts?
-
What does this code do?
Code:
@media only screen and (max-width: 500px) {
body {
background-color: lightblue;
}
}
- Which of the following selector is used to selects siblings?
- Which of the following CSS3 property specifies how nested elements are rendered in 3D space?
- Which of the following method skews an element along the X and Y-axis by the given angles using tranform?
- Which of the following outline-offset value sets the distance the outline is outset from the border edge?
- Which of the following property defines the width of a rule between columns in a multicolumn text flow?
- Which of the following css property is used to indicate if an animation plays in reverse or repeats itself every other iteration?
-
What does this code do?
Code:
@media only screen and (orientation: landscape) {
body {
background-color: lightblue;
}
}