Please Allow Notifications

If you want to get our blog posts notification, you can subscribe our website by clicking on allow notification button



FOLLOW US ON TWITTER



FOLLOW US



img/blogimg/css3.jpg


@coder 799

CSS3 MARGIN PROPERTY


2021-11-16 14:12 · 5 min read

CSS3 margin property used to add some gap between two elements. Margin property gives a proper look to a web page.
 

CSS3 Margin

You can use margin property to separate inline and block elements.
{margin-left  :  20px;}                

property        value

 

Example

Here is a simple example of margin property.
We are applying margin property on a <p> tag.

When you run the code you can see that the 2nd paragraph has margin=50px from left.

<body>
<p type="submit" style="color:rgb(255, 255, 255);background-color: red;">
theProDeveloper Tutorial
</p>
<p type="submit" style="color:rgb(255, 255, 255);background-color: red;margin-left:50px">
theProDeveloper Tutorial
</p>
</body>

 

CSS3 Margin Property

CSS3 margin property specifies a Shorthand property (all padding properties in one declaration)


margin:10px

Margin property is used when you want equal margin from the top, right, bottom, and left direction.

 

margin-top:10px

Margin from top direction

 

margin-right:10px

Margin from the right direction

 

margin-bottom:10px

Margin from bottom direction

 

margin-left:10px

Margin from the left direction

 

<!DOCTYPE html>
<html>
<head>
<style>
.tdb-school{color:black;background-color:white;
margin:10px 35px 10px 35px;
padding:10px 20px;
border:none;
border-radius:5px}
.top{margin-top:50px}
.right{margin-right:50px}
.bottom{margin-bottom:50px}
.left{margin-left:50px}
div{background-color:black;
margin-bottom:5px}
</style>
</head>

<!--Body-->
<body>
<div><button type="submit" class="tdb-school margin">margin</button></div>
<div><button type="submit" class="tdb-school top">margin</button></div>
<div><button type="submit" class="tdb-school right">margin</button></div>
<div><button type="submit" class="tdb-school bottom">margin</button></div>
<div><button type="submit" class="tdb-school left">margin</button></div>
</body>
</html>

 

Margin Short-hand

CSS3 margin property specifies a Shorthand property (all margin properties in one declaration)

{margin  :  10px  10px  10px  10px;}
                      
property    top right bottom left
margin: 10px 10px 10px 10px

 

Example


{margin-top:10px;margin-right:10px;margin-bottom:10px;margin-left:10px;}

margin:10px 20px 30px 40px

<!DOCTYPE html>
<html>
<head>
<style>
.tdb-school{
color:black;
background-color:white;
padding:20px 20px 20px 20px;
margin:20px 20px 20px 20px;
border:none;
border-radius:5px;
}
div{background-color:black}
</style>
</head>
<!--Body-->
<body>
<div>
<button type="submit" class="tdb-school padding">
Padding
</button>
</div>
<br><br>
</body>
</html>
TAGS:






POST COMMENTS
No Comment

Please login to post comment




POPULAR POSTS

what is new in miui 11?...
best free web hosting services...
free website ssl security using cloudfla...
do you want to make money online?...
CSS3 @IMPORT RULES...
CSS3 RESPONSIVE UI...
Tables HTML...
How to host a web page in 10 minutes....
How to use CSS3 Overflow Property?...
CSS3 FUNCTIONS...
CSS3 FILTERS...
CSS3 SHAPES...


RECENT COMMENTS

2022-03-05 11:05
By coder on XAMPP - MySQL shutdown unexpectedly | How to fix MySQL crash unexpectedly
2021-10-12 12:34
By abnongoke on do you want to make money online?
2021-10-12 12:34
By abnongoke on how to get a free website domain name?
2021-10-12 12:34
By solar panel for shed on what is new in miui 11?
2021-10-12 12:34
By solar panel for shed on best free web hosting services
2021-10-12 12:34
By amos tanui on free website ssl security using cloudflare


SOCIAL SHARE



FOLLOW US ON TWITTER



FOLLOW US ON FACEBOOK



FOLLOW US







Recent Blogs



Contact Us

Subscribe Our News-Letter



Kashipur, 244713
Uttarakhand, India



© blog.theprodevelopers.com 2022. All Rights Reserved. Powered by Pro Developer