JSFiddle - React, Tailwind, and code Playground

by ibcLee

HTML

<div class="demo1">
  <div class="left">定宽</div>
  <div class="right"><p>right</p>
     </div>
</div>

SCSS

@mixin common{
  line-height: 100px;
  height: 100px;
  text-align: center;
  color: white;
}
.demo1{
  @include common;
  .left{
    background-color: red;
    float: left;
    width: 100px;
  }
  .right{
    margin-left: 100px;
    background-color: blue;
    p{
      clear: both;
    }
  }
}