Advertisements
Advertisements
Question
Write the equivalent CSS code to set the following styles for a web page:
- The entire page's background color should be yellow.
- Second-level Heading properties should be as follows:
- The text color should be Red.
- Left margin should be 25 px.
Short Note
Solution
i. {background-color: yellow;}
ii. h2 {display: block; font-color: Red ; margin-left: 25px;}
shaalaa.com
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
The ______ property is used to set the position for an element.
______ is used with elements that overlap with each other.
.cs is the extension of CSS file
A CSS rule set contains ______ and ______.
- Set
- selector
- post
- declaration block
- <>
CSS types are ______, ______ and ______
- internal
- external
- control
- inline
- loop
- style
Positioning types in CSS are ______
- Static
- fixed
- absolute
- position
- dynamic
- nested
Write Html5 code with CSS as follows -
- Create ordered list with names of tourist Cities.
- Create unordered list with tourist places of those cities.
- Divide the list into two sections left and right by using CSS.
"CSS is the most popular choice for the web developers these days". Write any four advantages of CSS.
Write an inline CSS code to set the background color for the first level heading as 'green' containing the text "My CA Exam".
- Assertion (A): CSS saves a lot of work. It can control the layout of multiple web pages all at once.
- Reason (R): All the required style settings can be stored in an external stylesheet and a link to it can be added in the <head> section of each web page.