Advertisements
Advertisements
प्रश्न
Write an external CSS code snippet to set all four margins of the body tag with 5px each.
Advertisements
उत्तर
body{
margin-top:5px; margin-right:5px; margin-left:5px; marginbottom:5px;
}APPEARS IN
संबंधित प्रश्न
______ is used with elements that overlap with each other.
A programmer wants to define range for age between 18 to 50, he will use a form with following appropriate control.
CSS types are ______, ______ and ______
- internal
- external
- control
- inline
- loop
- style
Positioning types in CSS are ______
- Static
- fixed
- absolute
- position
- dynamic
- nested
Types of floating properties are ______, ______, ______
- left
- zero
- right
- all
- none
- dock
"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".
Write any two differences between the Outline and Border-style properties of CSS.
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.
- 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.
