侧边栏壁纸
博主头像
落叶人生博主等级

走进秋风,寻找秋天的落叶

  • 累计撰写 130557 篇文章
  • 累计创建 28 个标签
  • 累计收到 9 条评论
标签搜索

目 录CONTENT

文章目录

在css中创建凹角[复制]

2022-12-29 星期四 / 0 评论 / 0 点赞 / 18 阅读 / 1017 字

参见英文答案 > Inset border-radius with CSS3 &nb

... . . 参见英文答案 > Inset border-radius with CSS3                                    8个
是否可以在css中创建这样的凹角?如果是的话,你会怎么做?.

解决方法

. 以下是我将如何解决这个问题的一个很好的例子:

http://jsfiddle.net/x4wLf/

HTML:

<div class='concave'>    <div class='topleftconcave'></div>    <div class='botleftconcave'></div></div>

CSS:

div.concave {    background:blue;    width:150px;    height:120px;    position:relative;}div.topleftconcave {    position:absolute;    background:white;    width:25px;    height:35px;    border-bottom-right-radius:500px;}div.botleftconcave {    position:absolute;    background:white;    width:25px;    height:35px;    bottom:0;    left:0;    border-top-right-radius:500px;}
. . .. ...

广告 广告

评论区