Thuộc tính border-image-source được sử dụng trong CSS để đặt đường dẫn hình ảnh. Bạn có thể thử chạy đoạn mã sau để đặt đường dẫn hình ảnh -
Ví dụ
<html> <head> <style> #borderimg1 { border: 15px solid transparent; padding: 15px; border-image-source: url(https://tutorialspoint.com/css/images/border.png); border-image-repeat: round; } </style> </head> <body> <p id = "borderimg1">This is image border example.</p> </body> </html>