Advertisements
Advertisements
Question
Write an external CSS code snippet to set all four margins of the body tag with 5px each.
Advertisements
Solution
body{
margin-top:5px; margin-right:5px; margin-left:5px; marginbottom:5px;
}APPEARS IN
RELATED QUESTIONS
The float property defines the ______ of content.
State whether the following statement is True or False.
.cs is the extension of CSS file.
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 ______.
Types of floating properties are ______, ______, ______.
Write HTML5 code with CSS as follows -
- To create form to accept name, age, email address, from the user.
- Create a submit button to send the data.
- The heading of the form should have a background color and a different font style.
"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 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.
