+ 1
make a fake border with two overlayed linear-gradients . Then you can do border-radius.
+ 2
Lisa
great reference. Bookmarked.š
+ 1
#d1 {
height:649px;
border: double 1px transparent;
border-image-slice: 1;
border-width: 10px;
background-image: linear-gradient(white,white),linear-gradient(to left, #67FCC1FF , #84F1E0FF , #66E6D2FF , #5EE8FFFF , #28ACFFFF);
border-radius:26px;
background-origin:border-box;
background-clip: content-box, border-box;
}
+ 1
border-image does not support border-radius.
The workaround is to fake the effect.