0% found this document useful (0 votes)
2 views

CSS 3 Test Questions

The document contains a series of multiple-choice questions related to CSS concepts, including the box model, background properties, media queries, and font styles. It tests knowledge on various CSS properties, their values, and their applications in web design. Each question presents options for answers, focusing on the correct usage and understanding of CSS syntax and behavior.

Uploaded by

evisa
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views

CSS 3 Test Questions

The document contains a series of multiple-choice questions related to CSS concepts, including the box model, background properties, media queries, and font styles. It tests knowledge on various CSS properties, their values, and their applications in web design. Each question presents options for answers, focusing on the correct usage and understanding of CSS syntax and behavior.

Uploaded by

evisa
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 10

The CSS box model consists of which of the following options?

1 Margin
2 Padding
3 Content

a. All 1, 2, and 3
b. Only 1 and 2
C. Only 1 and 3
d. Only 2 and 3

Which of the following declarations can be used to cover the whole background?

a.body
background: red url("test.gif");
background-repeat: repeat-y;
background-attachment: fixed;
b.body{
background: red url("test.gif");
background-repeat: repeat-x;
background-attachment: fixed;
C.body
background: red url("test.gif");
background-repeat: no-repeat;
background-attachment: fixed;
d.body
background: red url("test.gif");
background-repeat: repeat;
background-attachment: fixed;
e.body{
background-image: url("test.gif");
background-repeat: space;

Which of the following does not apply to external styles?

a. Clean separation of design and content


b. Minimal code duplication
С. Highest priority
d. Reduced page download time

ruby-text (in XHTML: rt)


Which of the following display values assign ruby semantics to an arbitrary element as
given above?

а.It specifies that an element defines a ruby base.


b.It specifies that an element contains one or more ruby bases.
C.It specifies that an element defines a ruby text.
d.It specifies that an element contains one or more ruby texts.
e.It specifies that an element defines a ruby structure.

Which of the given user interface properties is/ are supported by CSS3?
1. resize 2. outline-offset

a.Only 1
b.Only 2
C.Both 1 and 2
d.Neither 1 nor 2

If you want to create a dropdown menu to go from right to left, instead of left to right,
then which of the following options will help you to achieve that?

a.style="left;
b.style="left:0;
C.style="right:0;

Which of the following is the valid option that can be used to remove underlines from the
links in CSS3?

а.text-underline: none;
b.text-formatting: none;
C.text-decoration: none;

Which of the following CSS functions can be used to insert the value of a custom
property?

a.val()
b.var()
C.attr()
d.hsl()
A

In relation to CSS, which of the following values of @keyframes property are


mandatory?

a.animationname
b.kevframes-selector
C.css-styles
d.None of the above.
Which of the following option does NOT exist in media groups available in CSS3?

а.continuous or paged
b.visual or tactile
C.grid or bitmap
d.braille or screen

A/An is defined with 'grid-columns', 'grid-rows' properties.

a. Explicit grid
b. Natural grid
C. Default grid
d. None of the above

Which of the following options is not the valid CSS background property?

а.background-color
b.background-repeat
C.background-position
d.background-picture

Consider the following font definition:


font-weight:normal
What is the other way of getting the same result?

а.font-weight:100
b.font-weight:900
C.font-weight:400
d.font-weight:700

In relation to CSS3, what does the following selector selects?


a[href$-".pdf"]

a.It selects every element whose href attribute value ends with "pdf"
b.It selects every element whose href attribute value starts with "pdf."
C.It selects the first element whose href attribute value ends with " pdf".
d.It selects the first element whose href attribute value starts with "pdf".
C

Which of the following background colors is defined by the given code?


#p1 {background-color: hsl(120, 100%, 50%);}

a.Red
b.Green
C.Blue
d.Black
In CSS3, which of the given properties can be used to change the text direction of an
element?
1. direction 2. unicode-bidi

а.Only 1
b.Only 2
c.Both 1 and 2
d.Neither 1 nor 2

backface-visibility:hidden; will this property hide the back side when an element is
rotated?

a.Yes
b.No

Which of the given options is/are equivalent to the following rule?


DIV {line-height: 1.2; font-size: 10pt }

а.DIV { line-height: 1.2em; font-size: 10pt }


b.DIV {line-height: 12em; font-size: 10pt }
C.DIV { line-height: 120%; font-size: 10pt }
d.DIV { line-height: 20%; font-size: 10pt }
e.DIV { line-height: 80%; font-size: 10pt }

In CSS3, which of the given are the valid values of the font-style property?
4 normal
5 italic
6 oblique

a.All 1, 2, and 3
b.Only 1 and 2
C.Only 1 and 3
d.Only 2 and 3

What is the problem in the following style sheet?


@import "style.css";
@media print
{
@import "print-main.css";
BODY { font-size: 10pt }
}
h1 {color: red }

a. Two style sheets can't be included with @import.


b.The body tag can" be included inside @media.
C. @import rule is invalid since it occurs inside a @media block.
d. It is valid.

If you are using the white-space-collapse property with value collapse, what will be the
output of the following string?

a. John leads his team to the victory but fails to reach the finals.
b. John leads his team to the victory but fails to reach the finals.
C. John leads his team to the victory but fails to reach the finals.
d. John leads his team to the victory but fails to reach the finals.

Which of the following is the initial value for the column-fill property?

a. auto
b.balance
C.none

What is the initial value of the animation-iteration-count property?

a.0
b.1
c.5
d. None

In CSS3, which of the following declarations can rotate an element counterclockwise?

a.object-rotation: -30deg
b.rotate-object: -30deg
C.transform: rotate(-30deg)
d.transform: rotateobject(-30deg)

Which of the following value of the white-space property will set the value of white-
space-collapse to "preserve" and value of the text-wrap to "none"?
а.normal
b.pre
C.nowrap
d.pre-wrap
e.pre-line

If you set the value of the speak property to digits, how would 22 be spoken?

a.twenty two
b.two two
C.twenty and two
d.four

What is the default value of the text-align property for Left to Right Languages?

а.start
b.end
C.left
d.right
e.center
f.justify

B
In relation to @font-face rule in CSS3, which of the following font descriptors are
mandatory?

a.font-family
b.font-style
C.scr
d.font-stretch

To which of the following elements can the min-width property not be applied?

a.button
b.span
C.table row

You might also like