LoginSignup
2
0

More than 3 years have passed since last update.

textareaの枠線、右下の//、フォーカスした時の青い枠線を消す

Last updated at Posted at 2020-08-21

textareaタグにデフォルトで設定されている、枠線、右下の//、そしてフォーカスした時に出てくる青い枠線をまとめて消去した方法をまとめてみました。

textarea {
    /* 枠線を消す */
    border: none;

    /* 右下の//(サイズ変更機能)を消す */
    resize: none;

    /* フォーカスした際の青い枠線を消す */
    outline: none;

    /* widthを100%にしておくことで、レスポンシブ対応ができます。 */
    width: 100%;
}

これで完全にまっさらな状態のテキストボックスの出来上がりです。

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0