
CSS Problems focuses on “Introduction to CSS”.
Q1. CSS stands for __________
A. Color Style Sheets
B. Cascade Sheets Style
C. Cascade Style Sheet
D. Cascading Style Sheets
Show Answer
Answer:-D. Cascading Style SheetsExplanation
CSS is a style sheet language which stands for Cascading Style Sheet.Q 2. In CSS, h1 can be called as _______
A. Selector
B. Attribute
C. Value
D. Tag
Show Answer
Answer:-A. SelectorExplanation
HTML element h1 is used in CSS for styling then it is also called a selector. Attributes are the special words which control the element’s behaviour. To show the start and end of HTML element, tag is used.Q 3. In css, “color:red” can be called as _____________
A. Selector
B. Rule
C. Declaration
D. Value
Show Answer
Answer:-C. DeclarationExplanation
In CSS, color:red is the declaration for an element saying that the given element has to apply a red color. Color is one of CSS property.Q 4. Which of the following attributes is used to specify elements to bind style rules to?
A. id
B. class
C. tag
D. all of the mentioned
Show Answer
Answer:-D. all of the mentionedExplanation
In CSS, styling elements can be done by id, class and tag attribute.Q 5. Which selector is used to specify a rule to bind a particular unique element?
A. id
B. class
C. tag
D. both class and tag
Show Answer
Answer:-A. idExplanation
For binding a particular unique element, id selectors are used. While for group of elements, class selector can be used.Q 6. In CSS, “font-size” can be called as ________
A. Selector
B. Rule
C. Property
D. Property-Name
Show Answer
Answer:-D. Property-NameExplanation
In CSS, font-size is a property-name which increases/decreases the font of text.Q 7. _________ selectors are used to specify a group of elements.
A. id
B. class
C. tag
D. both class and tag
Show Answer
Answer:-B. classExplanation
Class selectors are used to specify a group of elements. Id selector specifies a particular unique element.8. Which of the following tag is used to embed css in html page?
A. <script>
B. <style>
C. <css>
D. <!DOCTYPE html>
Show Answer
Answer:-Explanation tag is used to embed CSS in HTML page, while is used to embed JS in HTML. is HTML5 declaration.mmary>
Q 9. __________ has introduced text, list, box, margin, border, color, and background properties.
A. css
B. html
C. ajax
D. php
Show Answer
Answer:-A. cssExplanation
CSS is a style sheet language which stands for Cascading Style Sheet. CSS has introduced text, list, box, margin, border, color, and background properties.Q 10. Is it the best way to include H1 heading only one time on the web page.
A. False
B. True
Leave a Reply