css3伪类before插入svg,调整大小
2019/01/22
css3伪类before插入svg图片不好调整大小。
1.直接插入调整,关键是转content为块级元素
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style type="text/css" media="screen"> .test1:before{ content:url(test.svg); width: 100px; display: inline-block; } .test2:before{ content:url(test.svg); width: 200px; display: inline-block; } </style> </head> <body> <div> </div> <div> </div> </body> </html>
2,作为背景插入
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style type="text/css" media="screen"> .test1:before{ content:""; width: 100px; height:100px; background: url(test.svg); background-size:100% auto; display: inline-block; } </style> </head> <body> <div> </div> </body> </html>
上一篇:
css3瀑布流实现
下一篇:
c#图片完美裁剪,新闻展示
静水缘首页
刘丕水+宋静静于2007年9月相识于山东理 工大学,毕业后2011年相恋,共甘苦,历 时四年,终于在11月23号拿到了红本本, 组建了自己的小家庭......文章分类
最新文章
- nodejs私钥加密公钥解密的一个例子
- uniapp和微信小程序判断程序运行在开发或者测试或者线上版本的方法分别是什么
- electron使用electron-builder打包后模块包含exe文件执行失败
- Compile is disallowed on the main thread, if the buffer size is larger than 4KB
- better-sqlite3简介及常用操作
- nodejs 操作数据库的库
- nodejs使用http-proxy库实现多个域名代理和同时代理websocket的例子,代理包含https和http两种协议
- iis配置反向代理
- javascript伪多线程代码
- ip所在地址段判断