
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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
Set Width of Outline Around Element with JavaScript
To set the outline width, use the outlineWidth property. You can try to run the following code to set the width of the outline around an element with JavaScript −
Example
<!DOCTYPE html> <html> <head> <style> #box { width: 450px; background-color: orange; border: 3px solid red; margin-left: 20px; } </style> </head> <body> <p>Click below to add Outline Width.</p> <div id="box"> <p>This is a div. This is a div. This is a div. This is a div. This is a div.</p> <p>This is a div. This is a div. This is a div. This is a div. This is a div.</p> <p>This is a div. This is a div. This is a div. This is a div. This is a div.</p> </div> <br> <button type="button" onclick="display()">Set Outline Width</button> <br> <script> function display() { document.getElementById("box").style.outlineColor = "#5F5F5F"; document.getElementById("box").style.outlineStyle = "solid"; document.getElementById("box").style.outlineWidth = "7px"; } </script> </body> </html>
Advertisements