Tutorials References Exercises Videos Menu
Log in
Free Website Get Certified Upgrade

CSS Quiz Results

Score: 15 of 25

60% Correct:


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  
<stylesheet>mystyle.css</stylesheet>
<style src="mystyle.css">

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  
styles
class
font

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  
h1.all {background-color:#FFFFFF;}
all.h1 {background-color:#FFFFFF;}

Question 10:

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

text-color    Your answer  
fgcolor
color    Correct answer  

Question 11:

Which CSS property controls the text size?

font-style    Your answer  
font-size    Correct answer  
text-style
text-size

Question 12:

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

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

Question 13:

How do you display hyperlinks without an underline?

a {text-decoration:no-underline;}    Your answer  
a {text-decoration:none;}    Correct answer  
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  
text-style:capitalize
You can't do that with CSS
transform:capitalize

Question 15:

Which property is used to change the font of an element?

font-style    Your answer  
font-family    Correct answer  
font-weight

Question 16:

How do you make the text bold?

font-weight:bold;    Your answer  
font:bold;
style: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 5px 20px 1px;    Your answer  
border-width:10px 20px 5px 1px;
border-width:10px 1px 5px 20px;    Correct answer  
border-width:5px 20px 10px 1px;

Question 18:

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

padding-left    Your answer  
indent
margin-left    Correct answer  

Question 19:

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

Yes    Your answer  
No    Correct answer  

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    Correct answer  

Question 24:

How do you group selectors?

Separate each selector with a plus sign    Your answer  
Separate each selector with a comma    Correct answer  
Separate each selector with a space

Question 25:

What is the default value of the position property?

relative    Your answer  
fixed
absolute
static    Correct answer  

Kickstart your career

Get certified by completing a course

Get certified w3schools CERTIFIED . 2022