I am trying to create a page border by wrapping it around the content using a <div>
element. The parent element is the actual page itself. However, I'm having trouble with the margin-bottom
property as it doesn't seem to be working properly.
.page_border {
border: 20px solid;
height: 960px;
width: 720px;
margin-top: 24px;
margin-bottom: -24px;
margin-left: 24px;
}
<div class="page_border"></div>