<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom">
  <title>Manuel Matuzović - TIL</title>
  <subtitle>My Blog about accessibility, performance, and CSS architecture and layout.</subtitle>
  <link href="https://matuzo.at/feed.xml" rel="self"/>
  <link href="https://www.matuzo.at"/>
  <updated>2023-09-07T07:15:54Z</updated>
  <id>https://matuzo.at/</id>
  <author>
  <name>Manuel Matuzović</name>
  <email>manuel@matuzo.at</email>
  </author>
        <entry>
        <title>You can style the file selector button of file upload elements.</title>
        <link href="https://www.matuzo.at/til/til49"/>
        <updated>2023-02-13T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/til49</id>
        <content type="html">
                                &lt;pre&gt;&lt;code class=&quot;language-html&quot;&gt;&amp;lt;label for=&quot;upload&quot;&amp;gt;Select file&amp;lt;/label&amp;gt;&amp;lt;br&amp;gt;
&amp;lt;input type=&quot;file&quot; id=&quot;upload&quot;&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code class=&quot;language-css&quot;&gt;[type=&quot;file&quot;]::file-selector-button {
  background-color: hotpink;
  padding: 0.5rem 1rem;
  border: 2px solid fuchsia;
  margin-block-end: 1rem;
  display: block;
  border-radius: 3px;
}

[type=&quot;file&quot;]::file-selector-button:hover {
  background-color: aqua;
}&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CYou+can+style+the+file+selector+button+of+file+upload+elements.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>You can use the :scope pseudo class to select direct children of an element with `.querySelectorAll()`.</title>
        <link href="https://www.matuzo.at/til/til47"/>
        <updated>2022-08-23T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/til47</id>
        <content type="html">
                                &lt;pre&gt;&lt;code class=&quot;language-html&quot;&gt;&amp;lt;ul&amp;gt;
  &amp;lt;li&amp;gt;A&amp;lt;/li&amp;gt;
  &amp;lt;li&amp;gt;B&amp;lt;/li&amp;gt;
  &amp;lt;li&amp;gt;C&amp;lt;/li&amp;gt;
&amp;lt;/ul&amp;gt;

&amp;lt;p&amp;gt;D&amp;lt;/p&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code class=&quot;language-js&quot;&gt;  console.log(document.body.querySelectorAll(&#039;*&#039;))
  // NodeList(5) [ul, li, li, li, p]

  console.log(document.body.querySelectorAll(&#039;:scope &amp;gt; *&#039;))
  // NodeList(2) [ul, p]&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CYou+can+use+the+%3Ascope+pseudo+class+to+select+direct+children+of+an+element+with+%60.querySelectorAll%28%29%60.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>console.count() logs the number of times that this particular call to count() has been called.</title>
        <link href="https://www.matuzo.at/til/til46"/>
        <updated>2022-02-16T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/til46</id>
        <content type="html">
                                &lt;pre&gt;&lt;code class=&quot;language-js&quot;&gt;const letters = &quot;availabilities&quot;.split(&quot;&quot;);
letters.forEach(letter =&amp;gt; {
  if (letter === &#039;i&#039;) {
    console.count(`Letter ${letter}`)
  }
})

/* Output:

Letter i: 1
Letter i: 2 
Letter i: 3 
Letter i: 4
*/&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9Cconsole.count%28%29+logs+the+number+of+times+that+this+particular+call+to+count%28%29+has+been+called.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>You can link to multiple e-mail addresses</title>
        <link href="https://www.matuzo.at/til/til45"/>
        <updated>2021-07-27T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/til45</id>
        <content type="html">
                                &lt;pre&gt;&lt;code class=&quot;language-html&quot;&gt;&amp;lt;!-- comma separated list without spaces and/or url encoded with %20 --&amp;gt;
&amp;lt;a href=&quot;mailto:manuel@matuzo.at,manuel@webclerks.at&quot;&amp;gt;
 Contact me and me
&amp;lt;/a&amp;gt;

&amp;lt;!-- or with ?to= parameter --&amp;gt;
&amp;lt;a href=&quot;mailto:manuel@matuzo.at?to=manuel@webclerks.at&quot;&amp;gt;
 Contact me and me
&amp;lt;/a&amp;gt;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CYou+can+link+to+multiple+e-mail+addresses%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>You can use the spellcheck attribute to instruct browsers that, if possible, an element should or should not be checked for spelling errors.</title>
        <link href="https://www.matuzo.at/til/til44"/>
        <updated>2021-02-21T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/til44</id>
        <content type="html">
                                &lt;pre&gt;&lt;code class=&quot;language-html&quot;&gt;&amp;lt;textarea spellcheck=&quot;false&quot;&amp;gt;
  Tis is jusst a test.
&amp;lt;/textarea&amp;gt;

&amp;lt;div contenteditable spellcheck=&quot;false&quot;&amp;gt;
  Tis is jusst a test.
&amp;lt;/div&amp;gt;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CYou+can+use+the+spellcheck+attribute+to+instruct+browsers+that%2C+if+possible%2C+an+element+should+or+should+not+be+checked+for+spelling+errors.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>You can animate z-index.</title>
        <link href="https://www.matuzo.at/til/til43"/>
        <updated>2020-12-17T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/til43</id>
        <content type="html">
                                &lt;pre&gt;&lt;code class=&quot;language-css&quot;&gt;div {
  position: absolute;
  top: 0;
  left: 0;
  transition: z-index 2.5s;
}&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CYou+can+animate+z-index.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>You can make a link in an iframe open in its parent window, if you set target="_parent".</title>
        <link href="https://www.matuzo.at/til/til42"/>
        <updated>2020-12-16T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/til42</id>
        <content type="html">
                                &lt;pre&gt;&lt;code class=&quot;language-html&quot;&gt;&amp;lt;!-- Parent File--&amp;gt;
&amp;lt;iframe src=&quot;https://codepen.io/matuzo/debug/YzGVXGV&quot; frameborder=&quot;0&quot;&amp;gt;&amp;lt;/iframe&amp;gt;

&amp;lt;!-- Embedded file --&amp;gt;
&amp;lt;ul&amp;gt;
  &amp;lt;li&amp;gt;
    &amp;lt;a href=&quot;https://a11yproject.com&quot;&amp;gt;no target&amp;lt;/a&amp;gt;
  &amp;lt;/li&amp;gt;  
  &amp;lt;li&amp;gt;
    &amp;lt;a href=&quot;https://a11yproject.com&quot; target=&quot;_blank&quot;&amp;gt;target=&quot;_blank&quot;&amp;lt;/a&amp;gt;
  &amp;lt;/li&amp;gt;
  &amp;lt;li&amp;gt;
    &amp;lt;a href=&quot;https://a11yproject.com&quot; target=&quot;_parent&quot;&amp;gt;target=&quot;_parent&quot;&amp;lt;/a&amp;gt;
  &amp;lt;/li&amp;gt;
&amp;lt;/ul&amp;gt;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CYou+can+make+a+link+in+an+iframe+open+in+its+parent+window%2C+if+you+set+target%3D%22_parent%22.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>Adding an i (or I) before the closing bracket in an attribute selector causes the value to be compared case-insensitively.</title>
        <link href="https://www.matuzo.at/til/til41"/>
        <updated>2020-11-27T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/til41</id>
        <content type="html">
                                &lt;pre&gt;&lt;code class=&quot;language-html&quot;&gt;&amp;lt;button class=&quot;mybutton&quot;&amp;gt;Send&amp;lt;/button&amp;gt; &amp;lt;!-- red border --&amp;gt;
&amp;lt;button class=&quot;myButton&quot;&amp;gt;Send&amp;lt;/button&amp;gt; &amp;lt;!-- green border --&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code class=&quot;language-css&quot;&gt;[class*=&quot;button&quot; i] { /* matches mybutton and myButton */
  border: 10px solid green;
}

[class*=&quot;button&quot;] { /* matches only mybutton */
  border-color: red;
}&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CAdding+an+i+%28or+I%29+before+the+closing+bracket+in+an+attribute+selector+causes+the+value+to+be+compared+case-insensitively.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>ol and ul accept the type attribute. You can use it to set a different numbering type in HTML.</title>
        <link href="https://www.matuzo.at/til/ol-and-ul-accept-the-type-attribute-you-can-use-it-to-set-a-different-numbering-type-in-html"/>
        <updated>2020-10-07T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/ol-and-ul-accept-the-type-attribute-you-can-use-it-to-set-a-different-numbering-type-in-html</id>
        <content type="html">
                                &lt;pre&gt;&lt;code class=&quot;language-html&quot;&gt;&amp;lt;ol type=&quot;a&quot;&amp;gt;
  &amp;lt;li&amp;gt;Element 1&amp;lt;/li&amp;gt;
  &amp;lt;li&amp;gt;Element 2&amp;lt;/li&amp;gt;
  &amp;lt;li&amp;gt;Element 3&amp;lt;/li&amp;gt;
&amp;lt;/ol&amp;gt;

&amp;lt;ol type=&quot;A&quot;&amp;gt;
  &amp;lt;li&amp;gt;Element 1&amp;lt;/li&amp;gt;
  &amp;lt;li&amp;gt;Element 2&amp;lt;/li&amp;gt;
  &amp;lt;li&amp;gt;Element 3&amp;lt;/li&amp;gt;
&amp;lt;/ol&amp;gt;

&amp;lt;ol type=&quot;i&quot;&amp;gt;
  &amp;lt;li&amp;gt;Element 1&amp;lt;/li&amp;gt;
  &amp;lt;li&amp;gt;Element 2&amp;lt;/li&amp;gt;
  &amp;lt;li&amp;gt;Element 3&amp;lt;/li&amp;gt;
&amp;lt;/ol&amp;gt;

&amp;lt;ol type=&quot;I&quot;&amp;gt;
  &amp;lt;li&amp;gt;Element 1&amp;lt;/li&amp;gt;
  &amp;lt;li&amp;gt;Element 2&amp;lt;/li&amp;gt;
  &amp;lt;li&amp;gt;Element 3&amp;lt;/li&amp;gt;
&amp;lt;/ol&amp;gt;

&amp;lt;ul type=&quot;1&quot;&amp;gt;
  &amp;lt;li&amp;gt;Element 1&amp;lt;/li&amp;gt;
  &amp;lt;li&amp;gt;Element 2&amp;lt;/li&amp;gt;
  &amp;lt;li&amp;gt;Element 3&amp;lt;/li&amp;gt;
&amp;lt;/ul&amp;gt;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9Col+and+ul+accept+the+type+attribute.+You+can+use+it+to+set+a+different+numbering+type+in+HTML.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>The order in which transform functions in the transform shorthand property are defined matters.</title>
        <link href="https://www.matuzo.at/til/the-order-in-which-transform-functions-in-the-transform-shorthand-property-are-defined-matters"/>
        <updated>2020-10-02T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/the-order-in-which-transform-functions-in-the-transform-shorthand-property-are-defined-matters</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CThe+order+in+which+transform+functions+in+the+transform+shorthand+property+are+defined+matters.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>You can use the nomodule attribute to run JavaScript code only in browsers that don’t support JS modules.</title>
        <link href="https://www.matuzo.at/til/you-can-use-the-nomodule-attribute-to-run-javascript-code-only-in-browsers-that-don’t-support-js-modules"/>
        <updated>2020-10-02T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/you-can-use-the-nomodule-attribute-to-run-javascript-code-only-in-browsers-that-don’t-support-js-modules</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CYou+can+use+the+nomodule+attribute+to+run+JavaScript+code+only+in+browsers+that+don%E2%80%99t+support+JS+modules.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>Using the background-origin property you can position background images relative to the inner border edge (default), outer border edge, or the content edge.</title>
        <link href="https://www.matuzo.at/til/using-the-background-origin-property-you-can-position-background-images-relative-to-the-outer-border-edge-default-inner-border-edge-or-the-content-edge"/>
        <updated>2020-07-31T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/using-the-background-origin-property-you-can-position-background-images-relative-to-the-outer-border-edge-default-inner-border-edge-or-the-content-edge</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CUsing+the+background-origin+property+you+can+position+background+images+relative+to+the+inner+border+edge+%28default%29%2C+outer+border+edge%2C+or+the+content+edge.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>You can add the option { once: true } to an event listener to automatically remove it when has been invoked</title>
        <link href="https://www.matuzo.at/til/you-can-add-the-option-once-true-to-an-event-listener-to-automatically-remove-it-when-has-been-invoked"/>
        <updated>2020-07-24T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/you-can-add-the-option-once-true-to-an-event-listener-to-automatically-remove-it-when-has-been-invoked</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CYou+can+add+the+option+%7B+once%3A+true+%7D+to+an+event+listener+to+automatically+remove+it+when+has+been+invoked%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>The nullish coalescing operator (??) only returns its right-hand side operand when its left-hand side operand is null or undefined.</title>
        <link href="https://www.matuzo.at/til/the-nullish-coalescing-operator-only-returns-its-right-hand-side-operand-when-its-left-hand-side-operand-is-null-or-undefined"/>
        <updated>2020-07-17T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/the-nullish-coalescing-operator-only-returns-its-right-hand-side-operand-when-its-left-hand-side-operand-is-null-or-undefined</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CThe+nullish+coalescing+operator+%28%3F%3F%29+only+returns+its+right-hand+side+operand+when+its+left-hand+side+operand+is+null+or+undefined.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>Optional chaining allows you to chain methods or properties, and conditionally continue down the chain if the value is not null or undefined.</title>
        <link href="https://www.matuzo.at/til/optional-chaining-allows-you-to-chain-methods-or-properties-and-conditionally-continue-down-the-chain-if-the-value-is-not-null-or-undefined"/>
        <updated>2020-06-30T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/optional-chaining-allows-you-to-chain-methods-or-properties-and-conditionally-continue-down-the-chain-if-the-value-is-not-null-or-undefined</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9COptional+chaining+allows+you+to+chain+methods+or+properties%2C+and+conditionally+continue+down+the+chain+if+the+value+is+not+null+or+undefined.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>You can use the removeProperty method to remove a specific inline CSS property defined in the style attribute.</title>
        <link href="https://www.matuzo.at/til/you-can-use-the-removeproperty-method-to-remove-a-specific-inline-css-property-defined-in-the-style-attribute"/>
        <updated>2020-05-06T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/you-can-use-the-removeproperty-method-to-remove-a-specific-inline-css-property-defined-in-the-style-attribute</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CYou+can+use+the+removeProperty+method+to+remove+a+specific+inline+CSS+property+defined+in+the+style+attribute.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>There’s a space-separated syntax for values in functional color notations.</title>
        <link href="https://www.matuzo.at/til/theres-a-space-separated-syntax-for-values-in-functional-color-notations"/>
        <updated>2020-04-19T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/theres-a-space-separated-syntax-for-values-in-functional-color-notations</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CThere%E2%80%99s+a+space-separated+syntax+for+values+in+functional+color+notations.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>JSON.stringify takes 3 parameters. The third parameter can be used to pretty-print the output.</title>
        <link href="https://www.matuzo.at/til/json-stringify-takes-3-parameters-the-third-parameter-can-be-used-to-pretty-print-the-output"/>
        <updated>2020-03-20T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/json-stringify-takes-3-parameters-the-third-parameter-can-be-used-to-pretty-print-the-output</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CJSON.stringify+takes+3+parameters.+The+third+parameter+can+be+used+to+pretty-print+the+output.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>There's native, CSS-only smooth scrolling.</title>
        <link href="https://www.matuzo.at/til/theres-native-css-only-smooth-scrolling"/>
        <updated>2020-03-10T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/theres-native-css-only-smooth-scrolling</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CThere%27s+native%2C+CSS-only+smooth+scrolling.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>You can target Inverted Colors Mode mode in CSS</title>
        <link href="https://www.matuzo.at/til/you-can-target-inverted-colors-mode-mode-in-css"/>
        <updated>2020-01-29T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/you-can-target-inverted-colors-mode-mode-in-css</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CYou+can+target+Inverted+Colors+Mode+mode+in+CSS%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>You can use JavaScript (Vibration API) to vibrate devices</title>
        <link href="https://www.matuzo.at/til/you-can-use-javascript-vibration-api-to-vibrate-devices"/>
        <updated>2020-01-22T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/you-can-use-javascript-vibration-api-to-vibrate-devices</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CYou+can+use+JavaScript+%28Vibration+API%29+to+vibrate+devices%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>You can disable all form elements in a fieldset by setting the disabled attribute on the fieldset.</title>
        <link href="https://www.matuzo.at/til/you-can-disable-all-form-elements-in-a-fieldset-by-setting-the-disabled-attribute-on-the-fieldset"/>
        <updated>2020-01-14T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/you-can-disable-all-form-elements-in-a-fieldset-by-setting-the-disabled-attribute-on-the-fieldset</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CYou+can+disable+all+form+elements+in+a+fieldset+by+setting+the+disabled+attribute+on+the+fieldset.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>You can list all pseudo elements of an element in the CSS pane in Firefox Developer Tools.</title>
        <link href="https://www.matuzo.at/til/you-can-list-all-pseudo-elements-of-an-element-in-the-css-pane-in-firefox-developer-tools"/>
        <updated>2019-12-12T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/you-can-list-all-pseudo-elements-of-an-element-in-the-css-pane-in-firefox-developer-tools</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CYou+can+list+all+pseudo+elements+of+an+element+in+the+CSS+pane+in+Firefox+Developer+Tools.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>You can emulate dark mode and reduced motion in Chrome Dev Tools.</title>
        <link href="https://www.matuzo.at/til/you-can-emulate-dark-mode-and-reduced-motion-in-chrome-dev-tools"/>
        <updated>2019-12-04T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/you-can-emulate-dark-mode-and-reduced-motion-in-chrome-dev-tools</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CYou+can+emulate+dark+mode+and+reduced+motion+in+Chrome+Dev+Tools.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>You can instruct browsers to print pages in landscape orientation (Chrome/Opera only).</title>
        <link href="https://www.matuzo.at/til/you-can-instruct-browsers-to-print-pages-in-landscape-orientation-chrome-opera-only"/>
        <updated>2019-11-27T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/you-can-instruct-browsers-to-print-pages-in-landscape-orientation-chrome-opera-only</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CYou+can+instruct+browsers+to+print+pages+in+landscape+orientation+%28Chrome%2FOpera+only%29.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>You can change the filename of a downloadable file by defining a value in the download attribute.</title>
        <link href="https://www.matuzo.at/til/you-can-change-the-filename-of-a-downloadable-file-by-defining-a-value-in-the-download-attribute"/>
        <updated>2019-11-13T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/you-can-change-the-filename-of-a-downloadable-file-by-defining-a-value-in-the-download-attribute</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CYou+can+change+the+filename+of+a+downloadable+file+by+defining+a+value+in+the+download+attribute.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>The bullet or number of a list-item can be selected and styled with the ::marker pseudo-element.</title>
        <link href="https://www.matuzo.at/til/the-bullet-or-number-of-a-list-item-can-be-selected-and-styled-with-the-marker-css-pseudo-element"/>
        <updated>2019-11-05T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/the-bullet-or-number-of-a-list-item-can-be-selected-and-styled-with-the-marker-css-pseudo-element</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CThe+bullet+or+number+of+a+list-item+can+be+selected+and+styled+with+the+%3A%3Amarker+pseudo-element.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>If an input element has the attribute value autocomplete="new-password", browsers can suggest securely-generated passwords.</title>
        <link href="https://www.matuzo.at/til/if-an-input-element-has-the-attribute-value-autocomplete-new-password-browsers-can-suggest-securely-generated-passwords"/>
        <updated>2019-10-29T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/if-an-input-element-has-the-attribute-value-autocomplete-new-password-browsers-can-suggest-securely-generated-passwords</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CIf+an+input+element+has+the+attribute+value+autocomplete%3D%22new-password%22%2C+browsers+can+suggest+securely-generated+passwords.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>You can use the CSS Paint API to create background images in CSS.</title>
        <link href="https://www.matuzo.at/til/you-can-use-the-css-paint-api-to-create-background-images-in-css"/>
        <updated>2019-09-25T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/you-can-use-the-css-paint-api-to-create-background-images-in-css</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CYou+can+use+the+CSS+Paint+API+to+create+background+images+in+CSS.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>You can search the elements panel in Developer Tools not only for strings but also selectors.</title>
        <link href="https://www.matuzo.at/til/you-can-search-the-elements-panel-in-developer-tools-not-only-for-strings-but-also-selectors"/>
        <updated>2019-08-21T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/you-can-search-the-elements-panel-in-developer-tools-not-only-for-strings-but-also-selectors</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CYou+can+search+the+elements+panel+in+Developer+Tools+not+only+for+strings+but+also+selectors.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>The webkitdirectory attribute allows users to select directories instead of files. (desktop browsers only)</title>
        <link href="https://www.matuzo.at/til/the-webkitdirectory-attribute-allows-users-to-select-directories-instead-of-files-desktop-browsers-only"/>
        <updated>2019-07-24T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/the-webkitdirectory-attribute-allows-users-to-select-directories-instead-of-files-desktop-browsers-only</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CThe+webkitdirectory+attribute+allows+users+to+select+directories+instead+of+files.+%28desktop+browsers+only%29%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>It's possible to identify how many separate fingers are touching the screen.</title>
        <link href="https://www.matuzo.at/til/its-possible-to-identify-how-many-separate-fingers-are-touching-the-screen"/>
        <updated>2019-07-19T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/its-possible-to-identify-how-many-separate-fingers-are-touching-the-screen</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CIt%27s+possible+to+identify+how+many+separate+fingers+are+touching+the+screen.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>You can do responsive preloading because preload link elements accept the media attribute like any other link element.</title>
        <link href="https://www.matuzo.at/til/you-can-do-responsive-preloading-because-preload-link-elements-accept-the-media-attribute-like-any-other-link-element"/>
        <updated>2019-07-19T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/you-can-do-responsive-preloading-because-preload-link-elements-accept-the-media-attribute-like-any-other-link-element</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CYou+can+do+responsive+preloading+because+preload+link+elements+accept+the+media+attribute+like+any+other+link+element.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>SVGs are focusable in Internet Explorer. We can set focusable="false" to prevent that.</title>
        <link href="https://www.matuzo.at/til/svgs-are-focusable-in-internet-explorer-we-can-set-focusable-false-to-prevent-that"/>
        <updated>2019-06-13T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/svgs-are-focusable-in-internet-explorer-we-can-set-focusable-false-to-prevent-that</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CSVGs+are+focusable+in+Internet+Explorer.+We+can+set+focusable%3D%22false%22+to+prevent+that.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>macOS uses Papyrus as the default font when you define the generic font family “fantasy”.</title>
        <link href="https://www.matuzo.at/til/macos-uses-papyrus-as-the-default-font-when-you-define-the-generic-font-family-“fantasy”"/>
        <updated>2019-05-23T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/macos-uses-papyrus-as-the-default-font-when-you-define-the-generic-font-family-“fantasy”</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CmacOS+uses+Papyrus+as+the+default+font+when+you+define+the+generic+font+family+%E2%80%9Cfantasy%E2%80%9D.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>text-decoration doesn't have to be a solid line. There’s also dotted, dashed, double, and wavy.</title>
        <link href="https://www.matuzo.at/til/text-decoration-doesnt-have-to-be-a-solid-line-theres-also-dotted-dashed-double-and-wavy"/>
        <updated>2019-05-22T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/text-decoration-doesnt-have-to-be-a-solid-line-theres-also-dotted-dashed-double-and-wavy</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9Ctext-decoration+doesn%27t+have+to+be+a+solid+line.+There%E2%80%99s+also+dotted%2C+dashed%2C+double%2C+and+wavy.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>text-decoration is a shorthand property for text-decoration-line, text-decoration-color, and text-decoration-style.</title>
        <link href="https://www.matuzo.at/til/text-decoration-is-a-shorthand-property-for-text-decoration-line-text-decoration-color-and-text-decoration-style"/>
        <updated>2019-05-22T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/text-decoration-is-a-shorthand-property-for-text-decoration-line-text-decoration-color-and-text-decoration-style</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9Ctext-decoration+is+a+shorthand+property+for+text-decoration-line%2C+text-decoration-color%2C+and+text-decoration-style.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>Overflowing block-level elements with overflow set to scroll or auto are focusable in Firefox.</title>
        <link href="https://www.matuzo.at/til/overflowing-block-level-elements-with-overflow-set-to-scroll-or-auto-are-focusable-in-firefox"/>
        <updated>2019-03-18T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/overflowing-block-level-elements-with-overflow-set-to-scroll-or-auto-are-focusable-in-firefox</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9COverflowing+block-level+elements+with+overflow+set+to+scroll+or+auto+are+focusable+in+Firefox.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>You can use conditional comments to target specific versions of Outlook.</title>
        <link href="https://www.matuzo.at/til/you-can-use-conditional-comments-to-target-specific-versions-of-outlook"/>
        <updated>2019-02-19T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/you-can-use-conditional-comments-to-target-specific-versions-of-outlook</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CYou+can+use+conditional+comments+to+target+specific+versions+of+Outlook.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>You can turn the outline of an element to the _inside_  by setting the outline-offset property to a negative value. (Not supported in IE)</title>
        <link href="https://www.matuzo.at/til/you-can-turn-the-outline-of-an-element-to-the-_inside_-by-setting-the-outline-offset-property-to-a-negative-value-not-supported-in-ie"/>
        <updated>2019-02-14T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/you-can-turn-the-outline-of-an-element-to-the-_inside_-by-setting-the-outline-offset-property-to-a-negative-value-not-supported-in-ie</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CYou+can+turn+the+outline+of+an+element+to+the+_inside_++by+setting+the+outline-offset+property+to+a+negative+value.+%28Not+supported+in+IE%29%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>You can center a flex-item vertically and horizontally by applying margin: auto; to it.</title>
        <link href="https://www.matuzo.at/til/you-can-center-a-flex-item-vertically-and-horizontally-by-applying-margin-auto-to-it"/>
        <updated>2019-02-11T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/you-can-center-a-flex-item-vertically-and-horizontally-by-applying-margin-auto-to-it</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CYou+can+center+a+flex-item+vertically+and+horizontally+by+applying+margin%3A+auto%3B+to+it.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>If you press CMD/Ctrl and click on a property or property value in the style panel, @ChromeDevTools jumps directly to the respective css/scss file and line.</title>
        <link href="https://www.matuzo.at/til/if-you-press-cmd-ctrl-and-click-on-a-property-or-property-value-in-the-style-panel-chromedevtools-jumps-directly-to-the-respective-css-scss-file-and-line"/>
        <updated>2019-02-07T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/if-you-press-cmd-ctrl-and-click-on-a-property-or-property-value-in-the-style-panel-chromedevtools-jumps-directly-to-the-respective-css-scss-file-and-line</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CIf+you+press+CMD%2FCtrl+and+click+on+a+property+or+property+value+in+the+style+panel%2C+%40ChromeDevTools+jumps+directly+to+the+respective+css%2Fscss+file+and+line.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>About the @at-root directive. It moves nested styles out from within a parent selector or nested directive.</title>
        <link href="https://www.matuzo.at/til/about-the-at-root-directive-it-moves-nested-styles-out-from-within-a-parent-selector-or-nested-directive"/>
        <updated>2019-01-29T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/about-the-at-root-directive-it-moves-nested-styles-out-from-within-a-parent-selector-or-nested-directive</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CAbout+the+%40at-root+directive.+It+moves+nested+styles+out+from+within+a+parent+selector+or+nested+directive.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>IE 11 requires a unit to be added to the third argument (flex-basis) of the flex property.</title>
        <link href="https://www.matuzo.at/til/ie-11-requires-a-unit-to-be-added-to-the-third-argument-flex-basis-of-the-flex-property"/>
        <updated>2019-01-27T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/ie-11-requires-a-unit-to-be-added-to-the-third-argument-flex-basis-of-the-flex-property</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CIE+11+requires+a+unit+to+be+added+to+the+third+argument+%28flex-basis%29+of+the+flex+property.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>You can use `navigator.connection` to get information about the connection like round-trip time, bandwidth, connection type (e.g. 3g, 4g) or if Data-Saver is enabled.</title>
        <link href="https://www.matuzo.at/til/you-can-use-navigator-connection-to-get-information-about-the-connection-like-round-trip-time-bandwidth-connection-type-e-g-3g-4g-or-if-data-saver-is-enabled"/>
        <updated>2019-01-26T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/you-can-use-navigator-connection-to-get-information-about-the-connection-like-round-trip-time-bandwidth-connection-type-e-g-3g-4g-or-if-data-saver-is-enabled</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CYou+can+use+%60navigator.connection%60+to+get+information+about+the+connection+like+round-trip+time%2C+bandwidth%2C+connection+type+%28e.g.+3g%2C+4g%29+or+if+Data-Saver+is+enabled.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>The grid-auto-flow property takes up to two values. row, column, dense, row dense, or column dense.</title>
        <link href="https://www.matuzo.at/til/the-grid-auto-flow-property-takes-up-to-two-values-row-column-dense-row-dense-or-column-dense"/>
        <updated>2019-01-25T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/the-grid-auto-flow-property-takes-up-to-two-values-row-column-dense-row-dense-or-column-dense</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CThe+grid-auto-flow+property+takes+up+to+two+values.+row%2C+column%2C+dense%2C+row+dense%2C+or+column+dense.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>You can pass an `options` object, which only has a single property, to the `focus()` method to prevent scrolling on focus.</title>
        <link href="https://www.matuzo.at/til/you-can-pass-an-options-object-which-only-has-a-single-property-to-the-focus-method"/>
        <updated>2019-01-24T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/you-can-pass-an-options-object-which-only-has-a-single-property-to-the-focus-method</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CYou+can+pass+an+%60options%60+object%2C+which+only+has+a+single+property%2C+to+the+%60focus%28%29%60+method+to+prevent+scrolling+on+focus.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>There’s a tab-size property. It controls the width of the tab (U+0009) character.</title>
        <link href="https://www.matuzo.at/til/theres-a-tab-size-property-which-controls-the-width-of-a-tab-u-0009-character"/>
        <updated>2019-01-23T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/theres-a-tab-size-property-which-controls-the-width-of-a-tab-u-0009-character</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CThere%E2%80%99s+a+tab-size+property.+It+controls+the+width+of+the+tab+%28U%2B0009%29+character.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
        <entry>
        <title>How to get a random background-color (or any other value) each time I compile Sass.</title>
        <link href="https://www.matuzo.at/til/how-to-get-a-random-background-color-or-any-other-value-each-time-i-compile-sass"/>
        <updated>2019-01-22T00:00:00+00:00</updated>
        <id>https://www.matuzo.at/til/how-to-get-a-random-background-color-or-any-other-value-each-time-i-compile-sass</id>
        <content type="html">
                                &lt;p&gt;My blog doesn&#039;t support comments yet, but you can reply via &lt;a href=&quot;mailto:blog@matuzo.at?subject=Comment+on+%E2%80%9CHow+to+get+a+random+background-color+%28or+any+other+value%29+each+time+I+compile+Sass.%E2%80%9D&quot;&gt;blog@matuzo.at&lt;/a&gt;.&lt;/p&gt;        </content>
      </entry>
  </feed>
