CSS3 Rounded and Dotted borders?

后端 未结 6 1115

Is it possible to create a border in CSS3 such that they are rounded and dotted?

I\'m rounding my corners but they appear solid with:

border: 1px dot         


        
6条回答
  •  攒了一身酷
    2020-12-20 11:54

    My solution for this issue is

    background: url('../images/dot.png');
    background-size: 4px;
    background-position: bottom left;
    background-repeat: repeat-x;
    

    make sure the dot image is just one dot with some white space on wither side of it. After that you should be good.

提交回复
热议问题