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.
______ is used with elements that overlap with each other.
State whether the following statement is True or False.
.cs is the extension of CSS file.
A CSS rule set contains ______ and ______.
Positioning types in CSS are ______.
Write a program using html with following CSS specification -
- The background color of the company name should be green.
- The text color of the company name should be red.
- The heading should be large with font "comic sans ms"
- The description of the company should be displayed in blue color in a paragraph.
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>"CSS is the most popular choice for the web developers these days". Write any four advantages of CSS.
- 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.
