outline-width
Quick Summary for outline-width
The CSS outline-width property sets the thickness of an element's outline. An outline is a line that is drawn around an element, outside the border.
Code Usage for outline-width

<pre class="brush: css notranslate"><code><span class="token comment">/ Keyword values /</span> <span class="token property">outline-width</span><span class="token punctuation">:</span> thin<span class="token punctuation">;</span> <span class="token property">outline-width</span><span class="token punctuation">:</span> medium<span class="token punctuation">;</span> <span class="token property">outline-width</span><span class="token punctuation">:</span> thick<span class="token punctuation">;</span> <span class="token comment">/ &lt;length&gt; values /</span> <span class="token property">outline-width</span><span class="token punctuation">:</span> 1px<span class="token punctuation">;</span> <span class="token property">outline-width</span><span class="token punctuation">:</span> 0.1em<span class="token punctuation">;</span> <span class="token comment">/ Global values /</span> <span class="token property">outline-width</span><span class="token punctuation">:</span> inherit<span class="token punctuation">;</span> <span class="token property">outline-width</span><span class="token punctuation">:</span> initial<span class="token punctuation">;</span> <span class="token property">outline-width</span><span class="token punctuation">:</span> revert<span class="token punctuation">;</span> <span class="token property">outline-width</span><span class="token punctuation">:</span> unset<span class="token punctuation">;</span> </code></pre>

More Details for outline-width

outline-width

The CSS outline-width property sets the thickness of an element's outline. An outline is a line that is drawn around an element, outside the border.

It is often more convenient to use the shorthand property outline when defining the appearance of an outline.

Syntax

/* Keyword values */ outline-width: thin; outline-width: medium; outline-width: thick;  /* <length> values */ outline-width: 1px; outline-width: 0.1em;  /* Global values */ outline-width: inherit; outline-width: initial; outline-width: revert; outline-width: unset; 

The outline-width property is specified as any one of the values listed below.

Values

<length>

The width of the outline specified as a <length>.

thin

Depends on the user agent. Typically equivalent to 1px in desktop browsers (including Firefox).

medium

Depends on the user agent. Typically equivalent to 3px in desktop browsers (including Firefox).

thick

Depends on the user agent. Typically equivalent to 5px in desktop browsers (including Firefox).

Formal definition

Initial valuemedium
Applies toall elements
Inheritedno
Computed valuean absolute length; if the keyword none is specified, the computed value is 0
Animation typea length

Formal syntax

<line-width>

where <line-width> = <length> | thin | medium | thick

Examples

Setting an element's outline width

HTML
<span id="thin">thin</span> <span id="medium">medium</span> <span id="thick">thick</span> <span id="twopixels">2px</span> <span id="oneex">1ex</span> <span id="em">1.2em</span> 
CSS
span {   outline-style: solid;   display: inline-block;   margin: 20px; }  #thin {   outline-width: thin; }  #medium {   outline-width: medium; }  #thick {   outline-width: thick; }  #twopixels {   outline-width: 2px; }  #oneex {   outline-width: 1ex; }  #em {   outline-width: 1.2em; } 
Result

Specifications

Specification
CSS Basic User Interface Module Level 4 # outline-width

See also

outline outline-color outline-style Select your preferred language English (US)EspañolFrançais日本語한국어中文 (简体) Change language

No Items Found.

Add Comment
Type in a Nick Name here
 
Other Categories in CSS
css
Search CSS
Search CSS by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

You could also follow me on twitter. I have a couple of youtube channels if you want to see some video related content. RuneScape 3, Minecraft and also a coding channel here Web Dev.

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
In this case my anchor this week becomes driving almost 2hrs outside of Atlanta to one of my favorite hard core gyms in the world.. MetroFlex aka The Dungeon. The gym owners turn the heat way up so it becomes a fun sweat box and the gym members just watch from afar and leave me alone. I happily drive myself long distances to find MY ANCHOR. Our anchor allows us to have balance, focus and be as productive as possible. And if you're in the middle of a heavy set and your headphones start to fall off your head, like mine did here.. well.. f*ck the headphones. Let em break and fall. You can always get a new pair, but the iron ain't ever gonna lift itself.
Unknown
Latest News
## 🚀 AI Giants Hit Bullseye: Anthropic & OpenAI Achieve Product-Market Fit Anthropic and OpenAI have reached a significant milestone, finding product-market fit with their AI technologies, which means their products effectively meet the needs of their customers, driving growth and adoption. This achievement showcases the practical value of their innovations, enabling businesses and individuals to leverage AI for enhanced productivity and efficiency. With this alignment of product and market needs, these companies are poised to transform industries and shape the future of technology.