CSS Outline In Hindi – CSS Outline Property In Hindi – CSS Box Model Mai Outline De Jati Hain. Outline Ka Istemal Border Ko Outline Dene Ke Liye Kiya Jata Hain |
Yadi Aapne HTML Full Course And CSS Full Course And Python Full Course And PHP Full Course Nhi Read Kiya Hai To Aap Vah Bhi Read Kar Sakte Hai |
CSS Outline Property In Hindi
Contents

Upper Diye Image Mai Border Black And outline Red Di Gayi Hain |
CSS Box Model Me Outline Di Jati Hai Or Ouline Dene Ke Liye style, width, offset Or color Diya Jata Hai |

CSS outline properties:
outline-style
outline-color
outline-width
outline-offset
outline
CSS Outline Style In Hindi
CSS Mai Outline Dene Ke Liye Style Kuch Style Value Ki Jarurat Hoti Hain |
dotted
– Defines a dotted outlinedashed
– Defines a dashed outlinesolid
– Defines a solid outlinedouble
– Defines a double outlinegroove
– Defines a 3D grooved outlineridge
– Defines a 3D ridged outlineinset
– Defines a 3D inset outlineoutset
– Defines a 3D outset outlinenone
– Defines no outlinehidden
– Defines a hidden outline
Example:
<html> <head> <style> p{ outline-style: dotted; } </style> </head> <body> <p> MasterPrograming </p> </body> </html>
Output:

Aap Dekh Sakte Hain Ki Hamne Outline Dotted Ka Istemal Kiya Hain |
CSS Outline Color In Hindi
Outline Color Ka Istemal Outline Ke Color Ko Dene Ke Liye Karte Hain |
Example:
<html> <head> <style> p{ outline-style: dotted; outline-color: red; } </style> </head> <body> <p> MasterPrograming </p> </body> </html>
Output:

Aap Dekh Sakte Hain Ki Hamne Outline Dotted Ka Istemal Kiya Hain And Color Red Diya Hain|
CSS Outline Width In Hindi
CSS Outline Width Ka Istemal Outline Ko Width Dene Ke Liye Kiya Jata Hain.
Example:
<html> <head> <style> p{ outline-style: solid; outline-color: red; outline-width: 10px; } </style> </head> <body> <p> MasterPrograming </p> </body> </html>
Output:

Aap Dekh Sakte Hain Ki Hamne Outline Solid Ka Istemal Kiya Hain And Color Red Diya Hain And Width 10px Diya Hain|
CSS Outline offset In Hindi
Example:
<html> <head> <style> p{ outline-style: solid; outline-color: red; outline-width: 10px; outline-offset: outset; } </style> </head> <body> <p> MasterPrograming </p> </body> </html>
CSS Outline In Hindi
Abhi Tak Jo Hamne Property Istemal Ki Hain Ab Ham Unhe Keval outline Mai De Sakte Hai Wo Bhi Ek Sath |
Lekin Ham outline Mai outline-offset Nhi Dete Hain |
Example:
<html> <head> <style> p{ outline: 2px solid red; } </style> </head> <body> <p> MasterPrograming </p> </body> </html>
Output:

Also Read: