css centrer image code example

Example 1: css center image

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

Example 2: mettre une image au milieu css

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

Example 3: how to center an image in css

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

Example 4: aligner et centrer element css html



.navigation{
  width: 100%;
  height: 1.8em;
  
}

li {
  display: inline;
  padding:5px;
  
}
////////////////////////////////////////////////////
 
portrait portrait_demo portrait_demo
//////// css/////////// .portrait{ text-align: center; } .demo_portrait_1{ padding:10px; height: 400px; width: 400px; }

Tags:

Misc Example