I have a situation I have to make a half rounded border which is dashed border. Now can I animate border.
Please help
.box{
height:90px;
width: 500px;
background: #ffb08f;
border-radius: 0 0 30px 30px;
border: 1px dashed #000;
border-top:none;
}
<div class="box"></div>
Thanks for your answer I got the solution -
Well, I tried to achieve that, what I guess you wanted to achieve, and here is my result. I could have misunderstood you, but anyway, it was worth trying, and I know, it doesn't look good on the corners.
By the way, I think that you just wanted to make "moving border", if so, I just wanted to tell you that it's not possible (yet?) with like one CSS property, but you can cheat a little with multiple boxes and animations.
Correct me if I'm wrong ;)
If you need different settings, remember to change
top, bottom, right and left
properties in.box
CSS to match your borders.