前端 - 微信浏览器 css3圆角问题
问题描述
今天,我按照很正常的使用方式写了个圆角样式应用在一张图片上,在chrome浏览器和iPhone的微信浏览器看都很正常,但是到了Android的微信浏览器,就变得很奇怪,下面是完整的代码,这是jsbin的运行代码,也是我期望的效果。
在这里想请教一下大家,谢谢!
<html><head> <meta name='viewport' content='width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0'> <title></title> <style>html, body { margin: 0; padding: 0; text-align: center;}body { padding-top: 50px; background-color: #999;}.headimg { width: 150px; height: 150px; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; border: 5px solid red;} </style></head><body><img src='http://t3.qpic.cn/mblogpic/9e64a806a808a55ca1ea/2000' alt=''></body></html>
问题解答
回答1:对不起各位,刚才是我自己脑袋秀逗了。
<html><head> <meta name='viewport' content='width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0'> <title></title> <style>html, body { margin: 0; padding: 0; text-align: center;}body { padding-top: 50px; background-color: #999;}.wrapper { background-color: #fff; padding: 5px; width: 150px; height: 150px; line-height: 150px; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%;}.headimg { width: 150px; height: 150px; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%;} </style></head><body><p class='wrapper'><img src='http://t3.qpic.cn/mblogpic/9e64a806a808a55ca1ea/2000' alt=''></p></body></html>
相关文章:
1. javascript - 图片请求失败怎么去掉左上角的小图标?2. javascript - 请问这段 el && fn.call(el, e, el)代码这么写什么意思?3. javascript - 求一款靠谱点的移动端图片查看器插件,老司机速进!4. java-ee - JAVA8 lambdas表达式 改变外面变量的值5. javascript - node中为中间层如何解决跨域问题6. css - html表格 td 宽度随着固定为内容宽度7. html - 关于css选择器的问题8. javascript - ant design 菜单从接口里面获取 怎么写?现在都是写死的9. mysql - SQL添加记录的数据来源于同一个表10. java - 前后端分离怎么解决后端数据太多的问题?

网公网安备