

- 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
How to set the widths of the image border with JavaScript?
To set the widths of the image border, use the borderImageWidth property in JavaScript.
Example
You can try to run the following code to learn how to set widths of the border as an image −
<!DOCTYPE html> <html> <head> <style> div { background-color:gray; border: 40px solid; border-image: url('https://www.tutorialspoint.com/images/neo4j.png'); border-image-slice: 50; border-image-width: 20px; border-image-width: 1 1 1 1; border-image-outset: 0; border-image-repeat: round; } </style> </head> <body> <div id="box"> <p>Demo Text!</p> </div> <button onclick="display()">Set Width</button> <script> function display(){ document.getElementById("box").style.borderImageWidth = "20px 30px"; } </script> </body> </html>
- Related Questions & Answers
- How to set the inward offsets of the image border with JavaScript?
- Set the width of image border with CSS
- Set the border image width with CSS
- How to set the amount by which the border image area extends beyond the border box with JavaScript?
- How to set the image to be used as a border with JavaScript?
- How to set the color of the left border with JavaScript?
- How to set the style of the left border with JavaScript?
- How to set the width of the bottom border with JavaScript?
- How to set the style of the bottom border with JavaScript?
- How to set the color of the right border with JavaScript?
- How to set the width of the top border with JavaScript?
- How to set the width of the left border with JavaScript?
- How to set the color of the top border with JavaScript?
- How to set the style of the top border with JavaScript?
- How to set the style of the right border with JavaScript?
Advertisements