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

CSS Quiz

The document contains 25 multiple choice questions about CSS that test the reader's knowledge of CSS syntax, properties, selectors and other concepts. It covers topics like the box model, text styling, lists, the difference between classes, ids and element selectors and more.

Uploaded by

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

CSS Quiz

The document contains 25 multiple choice questions about CSS that test the reader's knowledge of CSS syntax, properties, selectors and other concepts. It covers topics like the box model, text styling, lists, the difference between classes, ids and element selectors and more.

Uploaded by

Maryam Mousa
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

Question 1:

What does CSS stand for?

Cascading Style Sheets Your answer


Colorful Style Sheets
Computer Style Sheets
Creative Style Sheets

Question 2:
What is the correct HTML for referring to an external style sheet?

<link rel="stylesheet" type="text/css" href="mystyle.css"> Your answer


<style src="mystyle.css">
<stylesheet>mystyle.css</stylesheet>

Question 3:
Where in an HTML document is the correct place to refer to an external style sheet?

In the <head> section Your answer


In the <body> section
At the end of the document

Question 4:
Which HTML tag is used to define an internal style sheet?

<style> Your answer


<css>
<script>

Question 5:
Which HTML attribute is used to define inline styles?

style Your answer


class
font
styles
Question 6:
Which is the correct CSS syntax?

body {color: black;} Your answer


{body:color=black;}
{body;color:black;}
body:color=black;

Question 7:
How do you insert a comment in a CSS file?

/* this is a comment */ Your answer


// this is a comment //
// this is a comment
' this is a comment

Question 8:
Which property is used to change the background color?

background-color Your answer


color
bgcolor

Question 9:
How do you add a background color for all <h1> elements?

h1 {background-color:#FFFFFF;} Your answer


all.h1 {background-color:#FFFFFF;}
h1.all {background-color:#FFFFFF;}

Question 10:
Which CSS property is used to change the text color of an element?

color Your answer


fgcolor
text-color
Question 11:
Which CSS property controls the text size?

font-size Your answer


text-style
text-size
font-style

Question 12:
What is the correct CSS syntax for making all the <p> elements bold?

p {font-weight:bold;} Your answer


<p style="font-size:bold;">
<p style="text-size:bold;">
p {text-size:bold;}

Question 13:
How do you display hyperlinks without an underline?

a {text-decoration:none;} Your answer


a {text-decoration:no-underline;}
a {underline:none;}
a {decoration:no-underline;}

Question 14:
How do you make each word in a text start with a capital letter?

text-transform:capitalize Your answer


You can't do that with CSS
text-style:capitalize
transform:capitalize

Question 15:
Which property is used to change the font of an element?
font-family Your answer
font-weight
font-style

Question 16:
How do you make the text bold?

font-weight:bold; Your answer


style:bold;
font:bold;

Question 17:
How do you display a border like this:

The top border = 10 pixels


The bottom border = 5 pixels
The left border = 20 pixels
The right border = 1pixel?

border-width:10px 1px 5px 20px; Your answer


border-width:5px 20px 10px 1px;
border-width:10px 5px 20px 1px;
border-width:10px 20px 5px 1px;

Question 18:
Which property is used to change the left margin of an element?

margin-left Your answer


indent
padding-left

Question 19:
When using the padding property; are you allowed to use negative values?

No Your answer
Yes

Question 20:
How do you make a list that lists its items with squares?

list-style-type: square; Your answer


list: square;
list-type: square;

Question 21:
How do you select an element with id 'demo'?

#demo Your answer


.demo
*demo
demo

Question 22:
How do you select elements with class name 'test'?

.test Your answer


test
#test
*test

Question 23:
How do you select all p elements inside a div element?

div p Your answer


div.p
div + p

Question 24:
How do you group selectors?

Separate each selector with a comma Your answer


Separate each selector with a space
Separate each selector with a plus sign

Question 25:
What is the default value of the position property?
static Your answer
fixed
absolute
relative

You might also like