CSS Border Images (original) (raw)

Last Updated : 2 Aug, 2023

The **border-image property in CSS is used to specify the border of an image. This property creates a border using an image instead of a normal border.

The property contains three-part that are listed below:

The border-image property is used to slice an image into nine sections, like a tic-tac-toe board.

**Syntax:

element {
border-image: url(border.png);
}

**border-image properties: There are many border-image properties which are listed below:

**Example: This example shows the use of the border-image property.

HTML `

CSS | Border Images