- To have the content centered
.content .body {
margin: 0 auto;
}
- Once you set fixed height on a container, remember to add overflow
.content {
width: 100%;
height: 500px;
margin: 10px auto;
border: indigo solid 2px;
overflow: scroll;
}
- To add css borders to see how box-model is displayed for all elements
- open dev tool
- select top container (
html
) element - add styling (click on
+
on dev tool>Styles tap)
* { border: 1px solid red; }
Top comments (0)