div style center code example

Example 1: css center image

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

Example 2: align div to the right

display:inline-block; float:right;

Example 3: how to assign something in center inside a div

IMG.displayed {
    display: block;
    margin-left: auto;
    margin-right: auto }
...
<IMG class="displayed" src="..." alt="...">

Example 4: how to assign something in center inside a div

P { text-align: center }
H2 { text-align: center }

Tags:

Misc Example