Réponse

div {
border:10px solid transparent;
border-image:url(border.png) 30 round;}

}

Colonne
Explication

Give the <div> element an image border using the image "border.png". Slice the image at 30px and repeat it.

Variante : div {
border: 10px solid transparent;
border-image: url(border.png) 30 stretch;
}

Question

Donner à un élément <div> une bordure image "border.png" qui se répète autour tous les 30px

Thématique