首页 > web前端 > css教程 > css怎么在input中插图片

css怎么在input中插图片

藏色散人
发布: 2022-12-30 11:11:29
原创
8636 人浏览过

css在input中插图片的方法:首先在包含input的div中设置子元素;然后设置外层div定位为relative;接着设置span定位为absolute;最后给input添加margin-left属性即可。

css怎么在input中插图片

本教程操作环境:windows7系统、HTML5&&CSS3版本、Dell G3电脑。

推荐:css视频教程

css在input里插图片

1、在包含input的div中设置子元素

<div class="search">
    <span></span>
    <input type="text">
</div>
登录后复制

2、设置外层div定位为relative

.search{
    position: relative;
}
登录后复制

3、设置span定位为absolute,并设置宽高和背景图片

.search > span{
    position: absolute;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(./search.png) no-repeat;
    background-size: 80% 80%;
    background-position: center;
}
登录后复制

4、给input添加margin-left属性。

.search > input{
    width: 100%;
    padding-left: 20px;
}
登录后复制

5、效果图

5a8660d45f235884bddb638ba9d5979.png

以上是css怎么在input中插图片的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
css
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板