
CSS
css相关
爱开车的彬哥
这个作者很懒,什么都没留下…
展开
-
去掉IOS微信端页面元素按下高亮
设置一个css样式即可-webkit-tap-highlight-color: rgba(0, 0, 0, 0);转载 2017-11-27 14:33:52 · 414 阅读 · 0 评论 -
固定定位position:fixed实现高度自适应
position:fixed实现高度自适应 直接上样式.mask {/*需要宽度*/ width: 70%; background-color: white; position: fixed; left: 50%; top: 50%; /* 支持现代浏览器 */ -webkit-transform: translate(-50%, -50%); tran...原创 2018-03-16 10:21:16 · 10262 阅读 · 0 评论 -
css利用padding实现图片的自适应相等宽高
css<style type="text/less"> .imgs{ width: 100%; height: 0; position: relative; padding-top: 100%; .image{ position: absolute; ...原创 2018-06-05 10:28:37 · 772 阅读 · 0 评论 -
css3实现重复渐变和多色边框
实现目标小程序页面需要实现收货地址下边框类似这种效果 CSS3代码实现使用css3背景色新属性:repeating-linear-gradient background: -webkit-repeating-linear-gradient(20deg, #009cff, #009cff 10px, #fff 10px, #fff 15px, #ffcb21 15px, #ff...原创 2018-08-03 11:58:01 · 1019 阅读 · 0 评论 -
CSS垂直水平居中 方法集合
在掘金看到一篇有关文章,自己做整理,方便在工作上用到查阅。需要实现的效果根据宽度高度是否固定absolute + 负marginabsolute + margin autoabsolute + calc根据宽度高度不固定absolute + transformlineheightwriting-modetablecss-tableflexg...原创 2018-09-15 11:03:00 · 244 阅读 · 0 评论 -
CSS3 filter(滤镜)属性及小程序 高斯模糊和Web的使用
CSS3 语法filter: none | blur() | brightness() | contrast() | drop-shadow() | grayscale() | hue-rotate() | invert() | opacity() | saturate() | sepia() | url();浏览器兼容性 属性 Chrome Edge ...原创 2018-11-24 11:23:58 · 3756 阅读 · 1 评论