CSSで入力と送信ボタンのスタイルを設定する方法は?


146

私は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>

ここに画像の説明を入力してください


8
他の要素と同様にスタイルを設定できます
Explosion Pills


6
注意すべき重要な点として、他の要素のようにスタイルを設定することはできません<input>タグはなどをサポートしていません::after
JamEngulfer 2017

2
正しい。そのため、を使用することをお勧めします<button type="submit"><span>Send</span></button>。その後::after、- spanタグで使用できます。
クナンビ2018年

回答:


215

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; 
}

67

他の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.....*/
}
....

これが実際の例です


25

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; 
}

17

私は使用する代わりに

<input type='submit'>

使用する

<button type='submit'>

ボタンは、CSSスタイリングを特に念頭に置いて導入されました。これで、グラデーション背景画像を追加したり、CSS3グラデーションを使用してスタイルを設定したりできます。

HTML5フォーム構造の詳細については、こちらをご覧ください

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

乾杯!.Pav


1
iOS用のSafariは正しく:)ボタンに自分のスタイルを適用されますが、ないの<input type =「提出」>に、これは非常に有用だった
CrushedPixel

ただし、値をボタンのテキストとしてではなく、ボタンタグ<button> TEXT </ button>の間のテキストとして指定することはできません
Uzebeckatrente

4

信頼性を高めるために、idスタイルする要素にクラス名またはsを与えることをお勧めします(classおそらく複数あるため、テキスト入力の場合は)とid、送信ボタンにを付けます(ただし、classでも機能します)。

<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 */
}

4

フォーム要素のUIはブラウザとオペレーティングシステムによってある程度制御されているため、すべての一般的なブラウザとOSの組み合わせで同じように見えるようにスタイルを設定することは簡単ではありません。

代わりに、特定のものが必要な場合は、スタイル設定可能なフォーム要素を提供するライブラリを使用することをお勧めします。uniform.jsは、そのようなライブラリの1つです。


@BalinKingOfMoriaはそのように見えます。リンクを更新しました。
eis 2017

1

入力タイプsubmitのスタイルを設定するときは、次のコードを使用します。

   input[type=submit] {
    background-color: pink; //Example stlying
    }

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;
             }

これは完全にひどいです
Ratbert

1

私はここに与えられた答えに基づいてこの方法でそれをしました、それが役に立てば幸いです

.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;
    }

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;
}

2
これを送信入力のように使用するにはどうすればよいですか?
user2307683 2013年

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>

これは私がテストした動作しています。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.