web-dev-qa-db-ja.com

フォームの入力要素内にアイコンを配置する

フォームの入力要素内にアイコンを配置する方法

Screenshot of a web form with three inputs which have icons in them

ライブ版: Tidal Forceテーマ

233
akif

あなたがリンクしたサイトはこれをやってのけるためにCSSトリックの組み合わせを使います。まず、<input>要素にbackground-imageを使います。そして、カーソルを合わせるためにpadding-leftを使います。

言い換えれば、彼らはこれら二つのCSSルールを持っています:

background: url(images/comment-author.gif) no-repeat scroll 7px 7px;
padding-left:30px;
350
Daniel Lew

他の人が投稿したCSSソリューションはこれを達成するための最良の方法です。

それでも問題が解決しない場合は(IE6を参照)、divの内側にボーダレス入力を使用することもできます。

<div style="border: 1px solid #DDD;">
    <img src="icon.png"/>
    <input style="border: none;"/>
</div>

「きれい」ではありませんが、古いブラウザでは動作するはずです。

45
harpo

これを試すことができます:

input[type='text'] {
    background-image: url(images/comment-author.gif);
    background-position: 7px 7px;
    background-repeat: no-repeat;
}
29

背景画像なしの解決策:

#input_container {
    position:relative;
    padding:0 0 0 20px;
    margin:0 20px;
    background:#ddd;
    direction: rtl;
    width: 200px;
}
#input {
    height:20px;
    margin:0;
    padding-right: 30px;
    width: 100%;
}
#input_img {
    position:absolute;
    bottom:2px;
    right:5px;
    width:24px;
    height:24px;
}
<div id="input_container">
    <input type="text" id="input" value>
    <img src="https://cdn4.iconfinder.com/data/icons/36-slim-icons/87/calender.png" id="input_img">
</div>
24

私はこれがそれに対する最善で最もきれいな解決策だと思います。 input要素でtext-indentを使用する

CSS:

#icon{
background-image:url(../images/icons/dollar.png); 
background-repeat: no-repeat; 
background-position: 2px 3px;
}

HTML:

<input id="icon" style="text-indent:17px;" type="text" placeholder="Username" />
23
Rust
.icon{
background: url(1.jpg) no-repeat;
padding-left:25px;
}

上記のタグをCSSファイルに追加して、指定したクラスを使用してください。

8
Rafi Haidari

これは私のために働く:

input.valid {
   border-color: #28a745;
   padding-right: 30px;
   background-image: url('https://www.stephenwadechryslerdodgejeep.com/wp-content/plugins/pm-motors-plugin/modules/vehicle_save/images/check.png');
   background-repeat: no-repeat;
   background-size: 20px 20px;
   background-position: right center;
}
<form>
<label for="name">Name</label>
<input class="valid" type="text" name="name" />
</form>
5
Gxzzin

Font-iconと一緒に使う

<input name="foo" type="text" placeholder="&#61447;">

OR

<input id="foo" type="text" />

#foo::before
{
  font-family: 'FontAwesome';
  color:red;
  position: relative;
  left: -5px;
  content: "\f007";    
}
4

あなたはこれを試すことができます:Bootstrap-4 Beta
https://www.codeply.com/go/W25zyByhec

<div class="container">
            <form>
                <div class="row">
                    <div class="input-group mb-3 col-sm-6">
                      <input type="text" class="form-control border-right-0" placeholder="Username" aria-label="Username" aria-describedby="basic-addon1">
                        <div class="input-group-prepend bg-white">
                            <span class="input-group-text border-left-0 rounded-right bg-white" id="basic-addon1"><i class="fas fa-search"></i></span>
                        </div>
                    </div>
                </div>
            </form>
        </div>

4
Hasan

CSSのbackgroundプロパティを使うだけです。

<input id="foo" type="text" />

#foo
{
    background: url(/img/foo.png);
}
4
Dan Walker
 <label for="fileEdit">
    <i class="fa fa-cloud-upload">
    </i>
    <input id="fileEdit" class="hidden" type="file" name="addImg" ng-file-change="onImageChange( $files )" ng-multiple="false" accept="{{ contentType }}"/>
  </label>

例えば、あなたはこれを使用することができます:隠された入力を持つラベル(アイコンは存在します).

1
yazabara

こんな状況でした。 background: #ebebeb;のためにうまくいきませんでした。背景を入力フィールドに配置したいのですが、そのプロパティが常に背景画像の一番上に表示されていました。それで、私はbackgroundプロパティをbackground-imageプロパティより上に動かしました、そして、それは働きました。

input[type='text'] {
    border: 0;
    background-image: url('../img/search.png');
    background-position: 9px 20px;
    background-repeat: no-repeat;
    text-align: center;
    padding: 14px;
    background: #ebebeb;
}

私の場合の解決策は以下のとおりです。

input[type='text'] {
    border: 0;
    background: #ebebeb;
    background-image: url('../img/search.png');
    background-position: 9px 20px;
    background-repeat: no-repeat;
    text-align: center;
    padding: 14px;
}

言うまでもありませんが、borderpadding、およびtext-alignの各プロパティは、このソリューションにとって重要ではありません。元のコードを複製しただけです。

1
fantja

起動時にこのCSSクラスを入力に使用してから、それに応じてカスタマイズします。

    
 .inp-icon{
background: url(https://i.imgur.com/kSROoEB.png)no-repeat 100%;
background-size: 16px;
 }
<input class="inp-icon" type="text">
0
csandreas1