Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のアプリでは、テキストフィールドとその背後にあるボタン(画面全体を占める)があるため、ボタンがタップされると、テキストフィールドのキーボードが消えます。私の質問は、ボタンがタップされたときにボタンが青く点滅しないようにボタン属性を構成するにはどうすればよいですか? ありがとう
おそらく、ハイパーリンクをボタンとして使用しており、ハイパーリンクの色はアクセスすると変更されるため、css を使用してこれを変更できます。
a:link {color:#FF0000;} /* unvisited link */ a:visited {color:#00FF00;} /* visited link */ a:hover {color:#FF00FF;} /* mouse over link */ a:active {color:#0000FF;} /* selected link */