Управляйте несколькими ПК с единственной Мышью и Клавиатурой

Установите флажок в положение относительное, а текст на абсолютный ... После этого установите текст на дно 0.

.box {
  margin: auto;
  align-self: center;
  height:100px;
  width:50%;
  margin-top:0.5%;
  margin-bottom:0.5%;
  border: solid;
  position: relative;
}
.image {
  margin-right:45%;
  margin-left:45%;
  margin-top:1%;
  background: red;
  width: 30px;
  height: 30px;
}
.box p {
  display: block;
  text-align: center;
  position: absolute;
  bottom: 0;
  margin: 0;
}
<div class="box"><img class="image"><p>This is not how I would do it but okay          
16
задан Sklivvz 3 October 2008 в 17:13
поделиться