Learn HTML
CSS Introduction
CSS Basic Syntax
CSS Selector
CSS Units
CSS Text
CSS Border
CSS Outline
CSS Padding
CSS Margin
CSS Height & Width
CSS Overflow
CSS Resize
CSS Background
CSS Box Sizing
CSS Position
CSS Float
CSS Clear
CSS Clip Path & Shape Outside
CSS Display
CSS Media Queries
CSS Pseudo Classes & Elements
CSS Filter
CSS Transition
CSS Transform
CSS Animation
CSS List Style
CSS Table
CSS Scrollbar Styling
CSS Icon
CSS Cursor
CSS Variable & Calc
CSS User Select
CSS Flexbox
Learn Javascript
Learn Django
Properties of outline:
outline-width:
This property is used to set outline width.
Pass value in pixel, percentage, etc.
We can also pass some fixed value like thin, medium, thick
outline-style:
This property is used to give style of the outline.
The values are solid, dotted, dashed, double, groove,
ridge, inset, outset, mix, none.
outline-color:
This property is used to give outline a color.
The values are color name or color code.
outline:
This a shorthand property for outline. We can write all the outline
properties value in one line. The first value is outline style,
the second value is outline width and the third value is outline color.