

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- 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-slice
The CSS border-image-slice property is used to slice the border image.
Example
You can try to run the following code to implement the border-image-slice property −
<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 Questions & Answers
- Slice the border image with CSS
- CSS border-image property
- CSS border-image-source
- CSS border-image-width
- CSS border-image-repeat
- 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
- CSS border-radius property
- CSS border-box Value
- Animate CSS border property
- Difference between CSS border-collapse:collapse; and border-collapse:separate;
Advertisements