7

ユーザーがテキストフィールドに入力するプレースホルダーと入力を中央に配置できるかどうか疑問に思っていました。私はそれが可能だと思いますが、それを理解することはできません。誰でも助けることができますか?問題のテキストフィールドの私のコードは以下の通りです...

<input type="text" style="font-weight:bold:" name="kword" id="kword" autofocus ="on" placeholder="Enter Keyword(s)" autocomplete ="on"/>

ありがとう

4

3 に答える 3

4

これはに使用することができますtext-align:center

CSS:

input, input[placeholder] {
    text-align: center;
}
于 2012-09-13T10:39:17.270 に答える
2

次のように、ブラウザー固有のプレースホルダー疑似要素をターゲットにします。

input {
  text-align: center;
}

::-webkit-input-placeholder {
  text-align: center;
}
:-moz-placeholder {
  /* Firefox 18- */
  text-align: center;
}
::-moz-placeholder {
  /* Firefox 19+ */
  text-align: center;
}
:-ms-input-placeholder {
  text-align: center;
}
<input type="text" style="font-weight:bold;" placeholder="Enter Keyword(s)" />

于 2016-06-16T11:37:24.070 に答える