- 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
Slice the border image with CSS
The border-image-slice property is used to slice the border image with CSS. You can try to run the following code to implement the border-image-slice 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: 40; } </style> </head> <body> <p id = "borderimg1">This is image border example.</p> </body> </html>
- Related Articles
- CSS border-image-slice
- Set the border image width with CSS
- Set the width of image border with CSS
- CSS border-image property
- CSS border-image-source
- CSS border-image-width
- CSS border-image-repeat
- Set image as a border for elements with CSS
- Set the border image as rounded, repeated and stretched with CSS
- How to add a border to an image with CSS?
- Set border width with CSS
- Set Inset border with CSS
- Set Outset border with CSS
- Set the style of the border with CSS
- Set the color of the border with CSS

Advertisements