164

我正在学习 CSS。如何使用 CSS 设置输入和提交按钮的样式?

我正在尝试创建这样的东西,但我不知道该怎么做

<form action="#" method="post">
    Name <input type="text" placeholder="First name"/>
    <input type="text" placeholder="Last name"/>
    Email <input type="text"/>
    Message <input type="textarea"/>
    <input type="submit" value="Send"/>
</form>

在此处输入图像描述

4

12 回答 12

236

http://jsfiddle.net/vfUvZ/

这是一个起点

CSS:

input[type=text] {
    padding:5px; 
    border:2px solid #ccc; 
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

input[type=text]:focus {
    border-color:#333;
}

input[type=submit] {
    padding:5px 15px; 
    background:#ccc; 
    border:0 none;
    cursor:pointer;
    -webkit-border-radius: 5px;
    border-radius: 5px; 
}
于 2013-06-11T10:50:43.033 回答
75

只需像设置任何其他 html 元素一样设置提交按钮的样式即可。您可以使用CSS 属性选择器定位不同类型的输入元素

作为一个例子,你可以写

input[type=text] {
   /*your styles here.....*/
}
input[type=submit] {
   /*your styles here.....*/
}
textarea{
   /*your styles here.....*/
}

与其他选择器结合

input[type=text]:hover {
   /*your styles here.....*/
}
input[type=submit] > p {
   /*your styles here.....*/
}
....

这是一个工作示例

于 2013-06-11T10:48:12.903 回答
26

HTML

<input type="submit" name="submit" value="Send" id="submit" />

CSS

#submit {
 color: #fff;
 font-size: 0;
 width: 135px;
 height: 60px;
 border: none;
 margin: 0;
 padding: 0;
 background: #0c0 url(image) 0 0 no-repeat; 
}
于 2013-06-11T10:46:40.863 回答
20

我建议不要使用

<input type='submit'>

利用

<button type='submit'>

Button 的引入特别考虑了 CSS 样式。您现在可以向其中添加渐变背景图像或使用 CSS3 渐变设置样式。

在此处阅读有关 HTML5 表单结构的更多信息

http://www.w3.org/TR/2011/WD-html5-20110525/forms.html

干杯! .Pav

于 2013-06-11T12:45:39.200 回答
4

为了可靠性,我建议给id元素设置类名或 s 来设置样式(理想情况下是 aclass用于文本输入,因为可能会有几个)和一个id提交按钮(尽管 aclass也可以):

<form action="#" method="post">
    <label for="text1">Text 1</label>
    <input type="text" class="textInput" id="text1" />
    <label for="text2">Text 2</label>
    <input type="text" class="textInput" id="text2" />
    <input id="submitBtn" type="submit" />
</form>

使用 CSS:

.textInput {
    /* styles the text input elements with this class */
}

#submitBtn {
    /* styles the submit button */
}

对于更多最新的浏览器,您可以按属性选择(使用相同的 HTML):

.input {
    /* styles all input elements */
}

.input[type="text"] {
     /* styles all inputs with type 'text' */
}

.input[type="submit"] {
     /* styles all inputs with type 'submit' */
}

您也可以只使用兄弟组合器(因为样式的文本输入似乎总是跟随一个label元素,并且提交跟随一个文本区域(但这相当脆弱)):

label + input,
label + textarea {
    /* styles input, and textarea, elements that follow a label */
}

input + input,
textarea + input {
    /* would style the submit-button in the above HTML */
}
于 2013-06-11T10:50:29.487 回答
4

表单元素 UI 在某种程度上由浏览器和操作系统控制,因此以在所有常见浏览器/操作系统组合中看起来相同的方式非常可靠地设置它们的样式并非易事。

相反,如果你想要一些特定的东西,我会建议使用一个为你提供样式化表单元素的库。uniform.js就是这样一个库。

于 2013-06-11T10:47:32.133 回答
2

我是根据这里给出的答案这样做的,希望对您有所帮助

.likeLink {
    background: none !important;
    color: #3387c4;
    border: none;
    padding: 0 !important;
    font: inherit;
    cursor: pointer;
}
    .likeLink:hover {
        background: none !important;
        color: #25618c;
        border: none;
        padding: 0 !important;
        font: inherit;
        cursor: pointer;
        text-decoration: underline;
    }
于 2017-10-17T19:09:11.117 回答
1

设置输入类型提交样式时,请使用以下代码。

   input[type=submit] {
    background-color: pink; //Example stlying
    }
于 2015-04-24T22:17:52.520 回答
1

<input type="submit" style="background: red;" value="PRIVATE">

CSS hi-jack 中最后一个被击中的地方。丑陋但安全。最快也很难改变。是的。

于 2021-02-28T07:09:01.140 回答
1

实际上,这也很有效。

input[type=submit]{
                 width: 15px;
                 position: absolute;
                 right: 20px;
                 bottom: 20px;
                 background: #09c;
                 color: #fff;
                 font-family: tahoma,geneva,algerian;
                 height: 30px;
                 -webkit-border-radius: 15px;
                 -moz-border-radius: 15px;
                 border-radius: 15px;
                 border: 1px solid #999;
             }
于 2015-10-20T12:02:40.250 回答
0

HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>CSS3 Button</title>
<link href="style.css" rel="stylesheet" type="text/css" media="screen" />
</head>
<body>
<div id="container">
<a href="#" class="btn">Push</a>
</div>
</body>
</html>

CSS 样式

a.btn {
display: block; width: 250px; height: 60px; padding: 40px 0 0 0; margin: 0 auto;

background: #398525; /* old browsers */
background: -moz-linear-gradient(top, #8DD297 0%, #398525 100%); /* firefox */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8DD297), color-stop(100%,#398525)); /* webkit */

box-shadow: inset 0px 0px 6px #fff;
-webkit-box-shadow: inset 0px 0px 6px #fff;
border: 1px solid #5ea617;
border-radius: 10px;
}
于 2013-06-11T10:59:14.983 回答
0

很简单:

<html>
<head>
<head>
<style type="text/css">
.buttonstyle 
{ 
background: black; 
background-position: 0px -401px; 
border: solid 1px #000000; 
color: #ffffff;
height: 21px;
margin-top: -1px;
padding-bottom: 2px;
}
.buttonstyle:hover {background: white;background-position: 0px -501px;color: #000000; }
</style>
</head>
<body>
<form>
<input class="buttonstyle" type="submit" name="submit" Value="Add Items"/>
</form>
</body>
</html>

这是我测试过的工作。

于 2015-09-11T09:44:10.017 回答