- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
CSS border-image-source
The CSS border-mage-source property is used to set the image path. You can try to run the following code to implement the border-image-source property:
Example
<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; border-image-slice: 50; } </style> </head> <body> <p id = "borderimg1">This is image border example.</p> </body> </html>
- Related Articles
- CSS border-image property
- CSS border-image-slice
- CSS border-image-width
- CSS border-image-repeat
- Slice the border image with CSS
- Set the border image width with CSS
- Set the width of image border with CSS
- Set image as a border for elements with CSS
- How to add a border to an image with CSS?
- Set the border image as rounded, repeated and stretched with CSS
- CSS Border Properties
- Difference between CSS border-collapse:collapse; and border-collapse:separate;
- CSS border-box Value
- CSS border-radius property
- Animate CSS border property

Advertisements