CSS Styling Tips
How to create a container that is properly centered?
.container { width: 1140px; margin: 24px auto 24px auto; }
How to add a break line above an element?
.blog-box { padding-top: 20px; border-top: 1px solid #808080; }
How to create a container that is properly centered?
.container {
width: 1140px;
margin: 24px auto 24px auto;
}
How to add a break line above an element?
.blog-box {
padding-top: 20px;
border-top: 1px solid #808080;
}