how to put a container in the middle css code example
Example 1: how to assign something in center inside a div
IMG.displayed {
display: block;
margin-left: auto;
margin-right: auto }
...
Example 2: how to put element in center in html
p {
text-align: center;
}