8 Quizes | 10 Minutes
Cascading Style Sheet
What is the meaning of CSS?
<style></style>
Which tag will you use to add style on your website?
p{ color : blue; }
How will you add blue color to all paragraph tags?
Hint: write four parts of a style rule
background-color:purple;
How would you set a purple background color to an element?
p{ width: 50%; }
How to set the width of all paragraph tags as half of the available width?
Hint: think about the total width as a percent and then think about the half of the width
Same ID should be used in different HTML tags
Which one is not true?
Separate class names by a whitespace
How can we add multiple classes to an HTML element?
Seven
How many values a margin style rule cannot have?