3

入力テキスト フィールドを選択すると、Android の既定のブラウザが入力テキスト フィールドの周りに境界線を描画しますか?

これを試しましたが、何もしません。

input[type="text"]:focus { border: none; outline: none;}

Androidブラウザでテキストフィールドが選択されている場合、入力テキストフィールドの周りに境界線がないことは可能ですか?

4

1 に答える 1

4

背景を透明に設定してみてください。

<EditText   
    android:layout_width="fill_parent"  
    android:layout_height="wrap_content"  
    android:hint="@string/input"  
    android:background="#00000000" 
/> 
于 2012-04-11T13:19:41.100 に答える