
CSS
Quiz by DEREK HOWARD
Feel free to use or edit a copy
includes Teacher and Student dashboards
Measure skillsfrom any curriculum
Measure skills
from any curriculum
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
With a free account, teachers can
- edit the questions
- save a copy for later
- start a class game
- automatically assign follow-up activities based on students’ scores
- assign as homework
- share a link with colleagues
- print as a bubble sheet
20 questions
Show answers
- Q11. What term describes one specific feature such as size or color?Declaration BlockCSSPropertyRule30s
- Q22. Which property would you set to control the color of the background in an element?font-colorcolorbackbackground-color30s
- Q33. What symbol indicates that numeric values will be hexadecimal instead of decimal?@*!#30s
- Q44. Which of the following declarations will turn the text in a paragraph to bold?font-weight: normal;font=bold;font-weight: bold;font-size: large;30s
- Q55. What element would you style to set default properties for all of the other elements on your web page?<p>.<html><head><body>30s
- Q66. Which of the following is NOT a way to apply CSS properties to your website?The external methodThe embedded methodThe outline methodThe inline method30s
- Q77. What does this line of code in an external CSS file tell the browser? @charset "utf-8";The font style to useTo bold the text on the screenThe character set you are usingThat you are using base-830s
- Q88. What symbols are used in external CSS files to create a comment? A.///* and */###<!-- and -->30s
- Q99. What is the correct format for creating a style rule in an external CSS file?Selector name, opening curly brace, declaration block, closing curly braceDeclaration block, Selector name, opening curly brace, closing curly braceOpening curly brace, selector name, declaration block, closing curly braceSelector name, declaration block, opening curly brace, closing curly brace30s
- Q1010. Given a RGB value of #00FF00, what will be the resulting color on the screen?BlueRedGreenA mixture of red, green, and blue30s
- Q1111. What is the disadvantage of placing inline styles in your HTML pages?Both of these are disadvantagesNeither of these are disadvantagesIf you want to make a site-wide style change, you need to find and edit every copy of those inline styles.Inline styles clutter your HTML mark-up and make it harder to read.30s
- Q1212. How do you create an inline style?Add a “css” attribute to the target elementAdd a “style” attribute to the target elementDefine a style rule in your <head> areaAdd a list of property attributes to the target element30s
- Q1313. Each spot of color on a monitor is defined in RGB, which stands for:Red, Gray, BlackRed, Gray, BrownRed, Green, BlueRose, Green, Black30s
- Q1414. How many digits are there in the "hexadecimal" numbering system?2162551030s
- Q1515. What is true about the format of a declaration block found inside a <style> element instead of inline?All of these are true.You do not need to separate declarations with semi-colons at the end.You can use an equals sign (=) between the property and value.The format is the same as inline, but you might add some whitespace to put each declaration on a different line.30s