2019年10月18日
【CSS】textareaのoutlineをbottomだけ表示したい
textarea { outline: none; }を指定したあとに
textarea:focus { border-bottom: 1px solid #f00; }を指定します。
See the Pen
outline-bottom by ささ (@mygod877)
on CodePen.
textarea { outline: none; }を指定したあとに
textarea:focus { border-bottom: 1px solid #f00; }を指定します。
See the Pen
outline-bottom by ささ (@mygod877)
on CodePen.