

- 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 can I include dashed line for border with CSS
To include a dashed line for the border, use the border-style property.
Example
You can try to run the following code to implement border-style property value dashed to set dashed border:
<html> <head> </head> <body> <p style = "border-width:3px; border-style:dashed;"> This is a dotted border. </p> </body> </html>
- Related Questions & Answers
- Set dashed line for border with CSS
- Set dotted line for border with CSS
- Set a dotted line for the border with CSS
- Set outline style as a dashed line with CSS
- How do I make a dotted/dashed line in Android?
- How can I set a Border for an ImageView in Android?
- Can I give a border to a line in Matplotlib plot function?
- How to make dotted/dashed line in iOS?
- How can I create a stacked line graph with matplotlib?
- How can I make a simple 3D line with Matplotlib?
- How to create a plot with dashed regression line in base R?
- Set image as a border for elements with CSS
- How to remove Ttk Notebook Tab Dashed Line? (tkinter)
- Set border width with CSS
- Set Inset border with CSS
Advertisements