Рамка-градиент. Свойство border-image

Рамка-градиент
Исходный код этого примера:
<style>
    .wrap {
        width: 300px;
        margin: 10px auto;
        line-height: 100px;
        text-align: center;
        border: 15px solid;
        font-size: 18px;
        border-image: linear-gradient(to bottom right, #191, #def, #03c) 1;
    }
</style>
<div class="wrap">
    Рамка-градиент
</div>

.