WorksheetsCSS Fundamentals Worksheet (Grade 14)
Total questions: 20
Worksheet time: 10mins
What does CSS stand for?
Computer Style Sheets
Cascading Style Sheets
Creative Style System
Colorful Style Sheets
What is the main purpose of CSS?
To create databases
To add logic to web pages
To describe how HTML elements are displayed
To connect servers
Which format represents correct CSS syntax?
selector = property : value
selector { property: value; }
selector (property, value)
selector [property=value]
Which part of CSS selects the HTML element to style?
Property
Value
Selector
Attribute
How many main types of CSS are there?
One
Two
Three
Four
Which CSS is written directly inside an HTML tag?
External CSS
Internal CSS
Inline CSS
Browser CSS
Where is Internal CSS written?
Inside a ta<body>g
Inside <style>a
In a separate .css file
Inside a html element
Which tag is used to link an external CSS file?
<css>
<style>
<a>
<link>
Which CSS selector selects all elements?
#
.
*
@
Which symbol is used for an ID selector?
.
#
*
,
Can id be used for multiple html elements
yes
no
Which CSS has the highest priority?
External CSS
Internal CSS
Browser default styles
Inline CSS
Which CSS has the lowest priority?
Inline CSS
Internal CSS
External CSS
Browser default styles
Which of the following is a valid hex color code for red?
#fff44
#gg0023
#ff0000
rgba(255,0,0,1)
Which color format allows transparency?
Color name
Hex code
RGB
RGBA
Which property is used to change the background color?
color
background-color
bg-color
bgcolor
Which property prevents a background image from repeating?
background-size
background-position
background-repeat
background-attachment
Which CSS property creates space outside an element?
Padding
Border
Margin
Content
Which CSS property creates space inside an element?
Margin
Padding
Border
Width
Which is NOT a part of the CSS box model?
Content
Padding
Border
Alignment
