NEW
Font size
WorksheetsCSS 3
Total questions: 14
Worksheet time: 7mins
If we want define style for an unique element, then which css selector will we use ?
id
class
tag
name
Can we align a Block element by setting the left and right margins ?
yes, we can
not possible
If we want to wrap a block of text around an image, which css property will we use ?
wrap
align
float
Which of the following selector selects the elements that are checked?
E ~ F
::after
:checked
If we want to show an Arrow as cursor, then which value we will use ?
pointer
default
arrow
arr
Which element is used in the <HEAD> section on an HTML page, if we want to use an external style sheet file to decorate the page ?
<src>
<link>
<style>
<css>
Which attribute can be added to many HTML elements to identify them as a member of a specific group ?
id
div
class
span
When we write <img src="img.png">, what "img.png" inside double quote implies?
element
attribute
value
operator
Which CSS property is used to control the text size of an element ?
font-style
text-size
font-size
text-style
The default value of "position" attribute is _________.
fixed
absolute
sticky
relative
What is the correct syntax to change the background color with css?
background-color: purple;
background-color = "purple";
backgroundcolor=orange
change-background-color: purple
TRUE OR FALSE: HTML is used to style web pages.
True
False
What tag do you use to make a numbered list?
<list>
<ol>
<li>
<ul>
How do you change the font color with CSS?
font-color: green;
color: green;
change-font-color: green;
fontcolor=green;
