Answers for "prevent child margin from moving parent css"

CSS
0

prevent child margin from moving parent css

/* Prevent Child Margin from Moving Parent */
.parent {
  margin: -1px;
  padding: 1px;
}
/* Alternatively */
.parent {
	display: flow-root; /* no supported by IE 11 */
}
/*
Learn more: https://www.w3.org/TR/CSS2/box.html#collapsing-margins
*/
Posted by: Guest on October-03-2021

Code answers related to "prevent child margin from moving parent css"

Browse Popular Code Answers by Language