JSFiddle - React, Tailwind, and code Playground

by qhoc

HTML

<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css">
<div class="col-md-12 ng-scope">
    <form>
        <div class="form-group">
            <textarea class="form-control">Test</textarea>
        </div>
    </form>
</div>

CSS

textarea {
  border: none!important;
  resize: none;
  outline: none!important;
  box-shadow: none!important;
  -webkit-box-shadow: none!important;
  -moz-box-shadow: none!important;
}

textarea:hover {
    outline: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}