我需要知道如何更改联系表单中的文本颜色

时间:2018-01-23 01:51:00

标签: forms contact

我有一个联系表单,我按照我喜欢的方式设置它,但是文本是白色的,所以当你输入它时你无法看到它。当你突出显示它时,它就在那里工作,但是人们无法看到他们正在输入什么。我把它托管在这里www.trutattoo.amdesigns.studio.com

                 and this is my CSS

                          form label,

              form .label {
          display: block;
        margin-bottom: 20px;
          }

       input,
       textarea {
     margin-top: 20px;
      font-family: 'Open Sans', sans-serif;
     font-size: 14px;
      font-weight: 800;
   font-color: #000000;
    border: 1px solid #000000;
    outline: none;
     -webkit-transition: border-color 0.2s;
     -moz-transition: border-color 0.2s;
     -ms-transition: border-color 0.2s;
     -o-transition: border-color 0.2s;
     transition: border-color 0.2s;
      }

   input[type="text"],
   textarea {
   padding: 10px;
  width: 100%;


     }

      input[type="text"]:focus,
     textarea:focus {
       border-color: #161616;
       }

           input[type="checkbox"] {
          display: none;
              }

        textarea {
         margin-top: 20px;
       height: 200px;

        }

1 个答案:

答案 0 :(得分:0)

只需更改

font-color:#000000;     border:1px solid#000000;

000000到你想要的任何颜色。

更改为#ff0000的示例是您想要RED。

希望它有所帮助!