border-radius+border直角无法消去

36 篇文章 0 订阅
12 篇文章 0 订阅

今天在手机开发,需要做个带边框的圆角效果如下

在chrome的做效果设置css

.alertEnter{
	width: 80%;
	background-color: #fffbe4;
	border: 2px solid #5a493f;
	-webkit-box-shadow: 0px 0px 10px #5a493f;
	margin: auto;
	margin-top: 100px;
	text-align: center;
	padding: 10px;
	max-width: 300px;
	border-radius: 4px;
	border-color:#5a493f;
	-webkit-border-radius: 4px;
 }

 在电脑上效果正常,但是在小米手机的浏览器中会显示出直角,其他手机没发现这个情况,图片如下

调整border属性无法解决问题,后来发现box-shadow可以模拟出border,果断启用border,改用内阴影,修改后css

 .alertEnter{
	width: 80%;
	background-color: #fffbe4;
	-webkit-box-shadow: 0px 0px 0px 2px #5a493f inset,0px 0px 10px #5a493f;
	margin: auto;
	margin-top: 100px;
	text-align: center;
	padding: 10px;
	max-width: 300px;
	border-radius: 4px;
	border-color:#5a493f;
	-webkit-border-radius: 4px;
 }

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值