p {
margin-top: 100px;
margin-bottom: 100px;
margin-right: 150px;
margin-left: 80px;
}
div {
padding-top: 50px;
padding-right: 30px;
padding-bottom: 50px;
padding-left: 80px;
}
The Background-Attachment property sets whether a background image scrolls with the rest of the page, or is fixed.
body {
background-image: url("img_tree.gif");
background-repeat: no-repeat;
background-attachment: scroll|fixed|local|initial|inherit;
}
.a {
display: contents;
}
div {
display: flex;
align-items: center;
}
The Justify-Content property aligns the flexible container's items when the items do not use all available space on the main-axis (horizontally).
div {
display: flex;
justify-content: space-between;
}