-4

何が悪いのかについてのコードを投稿できればいいのですが、率直に言って、わかりません。私のWebページは機能しますが、連絡先パネルの入力要素では何も入力できません。なぜですか?

http://s1527.mtchs.org

4

2 に答える 2

0

CSSでhttp://s1527.mtchs.org/techmuffins.css

*最初のルールには、すべて( )を「選択不可」にする宣言が含まれています。具体的には、user-selectプロパティの(クロスブラウザ)バリアントのコレクションです。

* {
    margin: 0;
    padding: 0;
    -webkit-touch-callout: none; /****************************/
    -webkit-user-select: none;   /* Remove these lines       */
    -khtml-user-select: none;    /* or make the CSS selector */
    -moz-user-select: none;      /* more specific to avoid   */
    -ms-user-select: none;       /* the <input/> elements    */
    user-select: none;           /****************************/
}
于 2013-03-14T23:27:07.020 に答える
0

これらのルールは、入力を選択できない理由です。

* {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
于 2013-03-14T23:27:28.400 に答える