How to get only one rounded corner with border-radius htc hack and MSIE v:roundrect?

前端 未结 2 751
一生所求
一生所求 2021-02-03 18:13

I have a problem with partially rounded corners. See the first working example for most browsers:

.box {
  display: block;
  width: 100px;
  height: 100px;
  bor         


        
相关标签:
2条回答
  • 2021-02-03 18:38

    I was able to get it to work with border-radius: 0 0 10px 10px; and htc from http://css3pie.com/

    0 讨论(0)
  • 2021-02-03 18:47

    The other solution: border-bottom-right-radius:10px; not to make the CPU calculate unneeded border roundings

    0 讨论(0)
提交回复
热议问题