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;
}shaalaa.com
Cascading Style Sheets in HTML
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
The float property defines the ______ of content.
.cs is the extension of CSS file.
______ character is used to create an id in CSS.
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.
What type of CSS is the following code snippet?
<h1 style="color:blue;">A Blue Heading</h1>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.
