Home › Maharashtra HSC Class 12 (Arts) › informationtechnology › Cascading Style Sheets in HTML5 › If an HTML element has id='para1', which CSS sel…
If an HTML element has id='para1', which CSS selector targets it?
A.para1
B#para1
Cpara1
D*para1
Answer & Solution
Correct answer: B. #para1
1. The CSS Id Selector section explains hash notation.
2. 'Id selector selects the id attribute of an HTML element.'
3. It is written with hash (#) followed by the id name.
4. So #para1 targets the element with id='para1'.
_Source: Maharashtra Balbharati Std XII Information Technology, Ch 1 "Cascading Style Sheets in HTML5", §1.4 ¶3_
Related questions
In a CSS rule, what punctuation separates a property name from its value?In the CSS syntax 'Selector{Property1: value1; Property2: value2}', what separates declaraHow does the textbook describe the main benefit of CSS for multi-page websites?What does h1{padding:30px} accomplish per the table?Which embedded CSS placement is correct in an HTML document?Per the textbook, what is unique about an id in HTML?In CSS h1{margin-left:10px}, what does this rule accomplish?What is the correct way to set the font family of <p> tags to Arial?