JSFiddle - React, Tailwind, and code Playground

by dylanstark

HTML

<div class="pageTwo">
  <div class="block-works">
    <p class="work">We at Good Tree production watch movies at full time.Watching movies at 24 X 7 is our duties and reviewing them is our homework </p>
  </div>
 </div>

CSS

.block-works{
    position:absolute;
    background-color: black;
      opacity: 0.8;
      padding-right: auto;
      display:block;
    width:90%;
    margin-top: 100px;
    margin-bottom:100px;
    margin-left: 5%;
    margin-right: 5%;
    border-radius: 7px;
    height: 200px;
    -webkit-transition: width 2s;
    transition: width 2s
}
.blockworks:hover{
  width:90%;
  transition-delay: 0.6s;
}