Home › Maharashtra HSC Class 12 (Arts) › informationtechnology › Cascading Style Sheets in HTML5 › What does h1{padding:30px} accomplish per the ta…
What does h1{padding:30px} accomplish per the table?
AAdds 30 pixels of blank space around the h1 content
BMoves h1 30 pixels right
CSets h1 font size to 30 pixels
DSets h1 border width to 30 pixels as per the chapter
Answer & Solution
Correct answer: A. Adds 30 pixels of blank space around the h1 content
1. The CSS Properties table lists padding.
2. 'Used when you want to add padding (blank spaces) around the content of an element.'
3. Value type: Pixel.
4. Example: h1{padding:30px} — 30px blank space around h1 content.
_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?Which embedded CSS placement is correct in an HTML document?Per the textbook, what is unique about an id in HTML?If an HTML element has id='para1', which CSS selector targets it?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?