JSFiddle - React, Tailwind, and code Playground

by Aaron Bird

HTML

<div class="container">
  <span>test</span>
  <div class="field">
    <input tyle="text">
  </div>
</div>

<div class="container" >
  <span>test</span>
  <!-- .field生成bfc,span不受.field内部元素影响 -->
  <div class="field" style="overflow:hidden">
    <input tyle="text">
  </div>
</div>

CSS

.container {
  border:1px solid;
  margin:20px;
  width:300px;
}
.field {
  display:inline-block;
  height:50px;
  width:200px;
  background: yellow;
}
input {
  width:100%;
  border:0;
}