Скопируйте лист из файла & ldquo; Plants.xlsx & rdquo; и вставьте в & ldquo; export.xlsx & rdquo; с VBA

по умолчанию min-width примет внутренний элемент width

.container {
  width: 200px;
  background: red;
  height: 50px;
}
.child1 {
  background: black;
  display: inline-block;
}
.child2 {
  background: blue;
  display: inline-block;
  width: auto;
  min-width: 0px; /*changed width to min-width */
  float: right;
  -webkit-transition: 2s;
  transition: 2s;
}
.child2:hover {
  min-width: 100px; /* changed from width to min-width */
}
<div class="container">
  <div class="child1">
    child1
  </div>
  <div class="child2">
    child2
  </div>
</div>

0
задан Levente Bartha 15 January 2019 в 19:36
поделиться