Answers for "css margin to align center"

CSS
1

How do center using margin

margin-left: auto;
    margin-right: auto;
}
Posted by: Guest on October-02-2021
5

css margin

div.one {
  	margin: 20px; /* All around */
}
div.two {
	margin: 20px 10px; /* vertical | horizontal */
}
div.three {
	margin: 20px 10px 30px; /* top | horizontal | bottom */
}
div.four {
	margin: 20px 10px 30px 40px; /* top | right | bottom | left */
}
Posted by: Guest on December-10-2021

Browse Popular Code Answers by Language