你能用CSS设置html表单按钮吗?

时间:2013-02-19 05:08:47

标签: html css forms

我不喜欢默认按钮样式。真的很无聊。我正在使用

<input type="submit">

键入按钮。我可以在css中以某种方式设置这些样式吗?如果没有,我猜的另一种方法是使用div代替,并将其作为链接。你如何使用表格进行工作?

6 个答案:

答案 0 :(得分:46)

您可以通过CSS轻松实现所需: -

HTML

<input type="submit" name="submit" value="Submit Application" id="submit" />

<强> CSS

#submit {
    background-color: #ccc;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius:6px;
    color: #fff;
    font-family: 'Oswald';
    font-size: 20px;
    text-decoration: none;
    cursor: pointer;
    border:none;
}



#submit:hover {
    border: none;
    background:red;
    box-shadow: 0px 0px 1px #777;
}

DEMO

答案 1 :(得分:17)

是的,这很简单:

input[type="submit"]{
  background: #fff;
  border: 1px solid #000;
  text-shadow: 1px 1px 1px #000;
}

我建议给它一个ID或一个类,以便你可以更容易地定位它。

答案 2 :(得分:3)

是的,你可以专门使用input[type=submit] ep>来定位

.myFormClass input[type=submit] {
  margin: 10px;
  color: white;
  background-color: blue;
}

答案 3 :(得分:3)

您可以通过以下方式直接创建自己的风格:

 input[type=button]
 { 
//Change the style as you like
 }

答案 4 :(得分:1)

您可能想要添加:

-webkit-appearance: none; 

如果你需要在Mobile Safari上看起来一致......

答案 5 :(得分:0)

将以下样式写入相同的html文件头部分或写入.css文件

<style type="text/css">
.submit input
    {
    color: #000;
    background: #ffa20f;
    border: 2px outset #d7b9c9
    }
</style>

<input type="submit" class="submit"/>

.submit - 在css中。表示类,所以我使用属性集创建了提交类,并使用类属性

将该类应用于提交标记