NEW
Font size
WorksheetsIntroduction to CSS
Total questions: 10
Worksheet time: 2mins
What is the full form of CSS ?
Color and Style Sheets
Coloured Special Sheets
Cascading Style Sheets
None of the above
What is CSS?
CSS is a style sheet language
CSS is designed to separate the presentation and content, including layout, colors, and fonts
CSS is the language used to style the HTML documents
All of the mentioned
Which of the following tag is used to embed css in html page?
<css>
<style>
<!DOCTYPE html>
<script>
Which of the following CSS framework is used to create a responsive design?
larawell
bootstrap
django
rails
What will be the output of following CSS code snippet?
h1 {color: "green";}
heading becomes dark-green
heading becomes green
error occurs
nothings happen
Which of the following CSS style property is used to specify an italic text?
font
style
font-style
@font-face
Which of the following property allows a marquee to be used in the case of a text-overflow?
overflow-marquee
overflow-style
overflow-text
none of the mentioned
Which of the following CSS3 property can be used to allow line breaks within words?
line-break
line-wrap
word-wrap
word-break
Which of the following CSS selector is used to specify a rule to bind a particular unique element?
tag
id
class
both class and tag
How do you specify a CSS rule that applies only when the viewport width is less than a certain size?
@viewport (max-width: size) { }
@media (min-width: size) { }
@media (max-width: size) { }
@viewport (min-width: size) { }
