NEW
Font size
WorksheetsCSS (Text-Font-Box)
Total questions: 10
Worksheet time: 3mins
Which CSS property controls the text size?
font-style
font-size
font-family
font-width
Choose an INCORRECT unit for text size
em
pt
pc
pixel
What is the correct order for Font Shorthand
font: font-weight font-style font-size font-family;
font: font-style font-variant font-family font-size;
font: font-variant font-style font-family font-weight;
font: font-weight font-style font-family font-size;
Lowercase, uppercase, capitalize are examples of value for _______
text-align
text-indent
text-transform
text-emphasis
Identify CSS code to change text color to YELLOW
<div style="background-color:black;color:yellow">
<div style="background-color:yellow;color:black">
<div class="background-color:yellow;color:black">
<div type="background-color:black;color:yellow">
Based on given box properties, what is C?
Padding
Margin
Content
Border
Find the INCORRECT color value for HTML text.
rgb(red,green,blue)
#rrggbb
hsl(hue, saturation, lightness)
color code
Given:
border-width: 10px 20px 30px 40px;
Identify value for right border width.
10px
20px
30px
40px
Select the INCORRECT value for a border-style.
dashed
dotted
groove
straight
How to create the above border?
border-style: double solid dashed dotted;
border-style: solid dashed dotted double;
border-style: double dashed dotted solid;
border-style: dotted solid dashed double;
