html5,css3,改变输入颜色

html5,css3,change input color

如果我没有在这方面正确编写代码,我很抱歉,这是我的第一个 post,我对此很疯狂,我不知道如何做更多 基本上它是一种形式,最后我有 2 个输入,提交和重置 基本上我想做的是改变重置的背景颜色,因为提交的是好的,它们都在相同的表单和相同的 css3 内,这就是它的样子。 http://i.imgur.com/zpZuYQr.png

<div id="contactos" class="page">
            <form class="go-bottom">
                 <h2>Contactos</h2>
                  <div>
                    <input id="name" name="name" type="text" required />
                    <label for="name">Name</label>
                  </div>
                  <div>
                    <input id="phone" name="phone" type="tel" required />
                    <label for="phone">E-mail</label>
                  </div>
                  <div>
                    <textarea id="message" name="phone" required></textarea>
                    <label for="message">Message</label>
                    </div>
                <input type="submit" value="Send"/>
                <input type="reset" value="Clean" />
            </form>

这是 css3

* {
  box-sizing: border-box;
}

html {
  font: 14px/1.4 Sans-Serif;
}

form {
  width: 320px;
  float: left;
  margin: 10px;
}
form > div {
  position: relative;
  overflow: hidden;
}
form input, form textarea {
  width: 100%;
  border: 1px solid grey;
  background: none;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 8px 12px;
  outline: 0;
}
form input:valid, form textarea:valid {
  background: white;
}
form input:focus, form textarea:focus {
  border-color: #f06d06;
}
form input:focus + label, form textarea:focus + label {
  background: #f06d06;
  color: black;
  font-size: 70%;
  padding: 1px 6px;
  z-index: 2;
  text-transform: uppercase;
}
form label {
  transition: background 0.2s, color 0.2s, top 0.2s, bottom 0.2s, right 0.2s, left 0.2s;
  position: absolute;
  color: #999;
  padding: 7px 6px;
}
form textarea {
  display: block;
  resize: vertical;
}

form.go-bottom input, form.go-bottom textarea {
  padding: 12px 12px 12px 12px;
 
}
form.go-bottom label {
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}
form.go-bottom input:focus, form.go-bottom textarea:focus {
  padding: 4px 6px 20px 6px;
  
}
form.go-bottom input:focus + label, form.go-bottom textarea:focus + label {
  top: 100%;
  margin-top: -16px;
  
}

fiddle

您可以按如下方式设置重置样式

将此添加到您的 CSS

input[type="reset"]{
  background-color:yourcolour;
}

例如

input[type="reset"]{
  background-color:red;
}

针对你的情况,我做了一个fiddle..这里我只是给表格一个黑色背景..