0
私はテキストボックスの下の境界線のみを保持したいと思います。ここにここに私のcss-css textbox border on google chrome
input[type="text"],input[type="password"] {
border:0px;
border-bottom:1px solid black;
}
input[type="text"]:focus, input[type="password"]:focus {
border-bottom:2px solid green;
}
である、それはChromeで
firefox- で
![enter image description here](https://i.stack.imgur.com/rPv97.png)
クローム
で
AT-どのように見えるかです、テキストボックスは、フォーカスを取得したときにアウトラインを取得します。それを削除する方法はありますか?
このアウトラインは、フォーム要素がユーザーに対してフォーカスを持っていることを示します。 'outline:none;'はそれを削除します。本当に悪いですか? :) –