简体   繁体   English

将图像放在文本字段中

[英]Place an image inside a text field

I have an HTML input field like this. 我有一个像这样的HTML输入字段。 I would like to place an image inside the textbox on the right side. 我想在右侧的文本框中放置一个图像。 Can someone help me out with its CSS for that? 有人可以帮我解决这个问题吗?

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

In the picture is an image which is inside the text field email address, which is what I want. 在图片中是文本字段电子邮件地址内的图像,这是我想要的。 How do you do this? 你怎么做到这一点?

HTML HTML

<div class="fake-input">
    <input type="text" />
    <img src="http://www.zermatt-fun.ch/images/mastercard.jpg" width=25 />
</div>

CSS CSS

.fake-input { position: relative; width:240px; }
.fake-input input { border:none; background-color:#fff; display:block; width: 100%; box-sizing: border-box }
.fake-input img { position: absolute; top: 2px; right: 5px }

Working demo 工作演示

http://jsfiddle.net/HnJZa/ http://jsfiddle.net/HnJZa/

try this: 试试这个:

input { 
  background-image: url("icon.png");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: contain;
}

you can try something like this 你可以尝试这样的事情

.textBox{  
background-image:url(iconimage.jpg);   
background-position:right;   
background-repeat:no-repeat;   
padding-left:17px;
}

Then apply this style to your text box: 然后将此样式应用于文本框:

<input type="text" class="textBox" />

Use background-image and background-position property 使用background-image和background-position属性

DEMO DEMO

CSS: CSS:

input  {
     height: 70px;
     width: 200px;
     background-image:url("http://cloud.ohloh.net/attachments/25869/plone-icon-64_med.png");
     background-repeat:no-repeat;
     background-position: 133px 3px;

}

 .text3 { width: 300px; height: 30px; } #text3 { background-image: url(https://cdn3.iconfinder.com/data/icons/interface-8/128/InterfaceExpendet-09-128.png); background-size: 30px; background-repeat: no-repeat; } input { text-align: center; } 
 <p class="email"> Email </p> <input type="text" placeholder="Email_ID" class="text3" id="text3"> 

The answers above didn't replicate the format shown in the questioners image, or provide any explanation. 上面的答案没有复制提问者图像中显示的格式,或提供任何解释。 This is a solution using background images. 这是使用背景图像的解决方案。

Explanation of the background image syntax. 背景图像语法的说明。

background: url('https://d1ululg65bfe3q.cloudfront.net/images/troy/email-icon.png') no-repeat 97.25% 10px white;

 .bg-email-icon { background: url('https://d1ululg65bfe3q.cloudfront.net/images/troy/email-icon.png') no-repeat 97.25% 10px white; padding-left: 5px; padding-right: 50px; width: 255px; height: 30px; border: 1px gray solid; border-radius: 5px 5px 0px 0px; } .bg-lock-icon { background: url('https://d1ululg65bfe3q.cloudfront.net/images/troy/lock-icon.png') no-repeat 96.75% 10px white; padding-left: 5px; padding-right: 50px; width: 255px; height: 30px; border: 1px gray solid; border-top-width: 0px; border-radius: 0px 0px 5px 5px; } 
 <input name="exampleEmail" class="bg-email-icon" placeholder="Email" type="email"> <input name="examplePassword" class="bg-lock-icon" placeholder="Password" type="password"> 

You can add class to your input 您可以在输入中添加类

<input type="text" id="name" class="inputImage" />

and then background image to class in css 然后将背景图像转换为css中的类

.inputImage
{
background:#FFFFFF url('img.jpg') no-repeat top right;
}

You need to add class like this: 你需要添加这样的类:

CSS: CSS:

.bgInput {
  background: url(path of your image.jpg) top right no-repeat;
}

HTML: HTML:

<input type="text" class="bgInput" id="name"/>

一个小答案:您可以通过设置为输入字段的背景图像来完成此操作。

try: 尝试:

#name {
      background: url('path/image.png') right no-repeat;
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM