border-radius实例2
一、border-radius 最大值100% /* border-radius的最大值是100% */ .block { width: 100px; height: 100px; border: 1px solid red; /* border-radius: 10px 10px 100% 100%; */ border-radius: 10px 10px 200px 200px; } 二、使用大圆拼凑更多边角效果示例: 注:微信抢红包页面背景效果可以使用这种方式 css代码: .block { width: 200px; height: 200px; border: 1px solid red; border-radius: 10px; margin: 100px 0px 0px 100px; position: relative; overflow: hidden; } .blocktop { width: 200%; height: 200%; border: 1px solid blue; border-radius: 50%; margin-top: -150%; margin-left: -50%; background: blue; position: relative; overflow: hidden; } .blocktop .blockInner {