Почему не срабатывает свойство border-image-source?

Подскажите почему не отрабатывает свойство border-image-source ?

body {
  background: #333;
  padding: 15px;
}
.quote {
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  border: 1px solid;
  color: #fff;
  border-image-source: linear-gradient(254.2deg, #B68D98 26.29%, #4B9DFB 82.44%);
  padding: 15px 30px;
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  position: relative;
}
<div class="quote">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</div>


Ответы (1 шт):

Автор решения: Marat

Попробуйте вместо border-image-source -> border-image

border-image: linear-gradient(254.2deg, #B68D98 26.29%, #4B9DFB 82.44%) 1 round round;

body {
  background: #333;
  padding: 15px;
}
.quote {
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  border: 1px solid;
  color: #fff;
  border-image: linear-gradient(254.2deg, #B68D98 26.29%, #4B9DFB 82.44%) 1 round round;
  padding: 15px 30px;
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  position: relative;
}
<div class="quote">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</div>

→ Ссылка