博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
css & input type & search icon
阅读量:5248 次
发布时间:2019-06-14

本文共 1659 字,大约阅读时间需要 5 分钟。

css & input type & search icon

bug

740516-20190625093855097-1781980279.png

type="search"

OK

type="text" / type="input"

740516-20190625093804971-1219462656.png

.search-delete{    position: absolute;    display: block;    top: 1rem;    right: calc(1.38rem);    width: .32rem;    height: .32rem;    border-radius: 50%;    background: url("../../images/search/remove.svg") no-repeat center center;    /* background: url("../../images/search/remove.svg") no-repeat center center fixed; */    opacity: 1;    /* background-color: transparent; */}

css full background image

https://css-tricks.com/perfect-full-page-background-image/

html {   background: url(images/bg.jpg) no-repeat center center fixed;   -webkit-background-size: cover;  -moz-background-size: cover;  -o-background-size: cover;  background-size: cover;}
.search-delete{    position: absolute;    display: block;    top: 1rem;    right: calc(1.38rem);    width: .32rem;    height: .32rem;    border-radius: 50%;    background: url("../../images/search/remove.svg") no-repeat center center;    /* background: url("../../images/search/remove.svg") no-repeat center center fixed; */    opacity: 1;    /* background-color: transparent; */}

css transparent background color

transparent, background, opacity

background-color: transparent;

https://cssreference.io/property/background-color/

https://stackoverflow.com/questions/11184117/transparent-css-background-color

.search-delete{    position: absolute;    display: block;    top: 1rem;    right: calc(1.38rem);    width: .32rem;    height: .32rem;    border-radius: 50%;    background: url("../../images/search/remove.svg");    opacity: 1;    /* background-color: transparent; */}

转载于:https://www.cnblogs.com/xgqfrms/p/11080932.html

你可能感兴趣的文章
海量数据存储
查看>>
js中的try/catch
查看>>
[导入]玫瑰丝巾!
查看>>
自动从网站上面下载文件 .NET把网站图片保存到本地
查看>>
【识记】 域名备案
查看>>
STL uva 11991
查看>>
MY SQL的下载和安装
查看>>
自定义OffMeshLink跳跃曲线
查看>>
寄Android开发Gradle你需要知道的知识
查看>>
简述spring中常有的几种advice?
查看>>
学习Redux之分析Redux核心代码分析
查看>>
ABAP 创建和调用WebService
查看>>
C# 实例化顺序
查看>>
CSS水平垂直居中总结
查看>>
委托又给我惹麻烦了————记委托链的取消注册、获取返回值
查看>>
ps怎么把白色背景变透明
查看>>
gource 安装教程
查看>>
字符串转 Boolean 的正确方式
查看>>
给你的网站404页面加上“宝贝寻亲”公益页面
查看>>
整理推荐的CSS属性书写顺序
查看>>