
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 the width, line style and color properties for an outline in a single statement with CSS
The outline property is a shorthand property that allows you to specify values for multiple properties such as width, line style, and color of the outline.
Example
<html> <head> </head> <body> <p style = "outline:thin solid green;"> This text is having thin solid freen outline. </p> <br /> <p style = "outline:thick dashed #009900;"> This text is having thick dashed green outline. </p> <br /> </p> </body> </html>
Advertisements