<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Inspect Element]]></title><description><![CDATA[Inspect Element is a collection of Chrome Developer Tool tips learnt over time.]]></description><link>https://inspectelement.netlify.com</link><generator>RSS for Node</generator><lastBuildDate>Thu, 12 Sep 2019 09:15:02 GMT</lastBuildDate><item><title><![CDATA[General - Quick File Switching]]></title><description><![CDATA[DevTools provides a ‘panel’ like most code editors. From here you can achieve multiple actions. One time saving action is switching between…]]></description><link>https://inspectelement.netlify.com/quick-file-switching/</link><guid isPermaLink="false">https://inspectelement.netlify.com/quick-file-switching/</guid><pubDate>Thu, 12 Sep 2019 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;DevTools provides a ‘panel’ like most code editors. From here you can achieve multiple actions.&lt;/p&gt;
&lt;p&gt;One time saving action is switching between files. To do this, follow the steps below to improve your workflow:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;With DevTools open, hit &lt;strong&gt;Ctrl + P (Cmd + P)&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;A panel will pop up, type the file name within the search area.&lt;/li&gt;
&lt;li&gt;Hit &lt;strong&gt;enter&lt;/strong&gt; to open that file in DevTools sources.&lt;/li&gt;
&lt;/ol&gt;</content:encoded></item><item><title><![CDATA[JavaScript - Selecting Elements In The Console]]></title><description><![CDATA[The DevTools console provides you with shorterned element selectors to quicken your workflow. Listed below are three variables and their…]]></description><link>https://inspectelement.netlify.com/selecting-elements-in-the-console/</link><guid isPermaLink="false">https://inspectelement.netlify.com/selecting-elements-in-the-console/</guid><pubDate>Wed, 11 Sep 2019 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;The DevTools console provides you with shorterned element selectors to quicken your workflow.&lt;/p&gt;
&lt;p&gt;Listed below are three variables and their explanations:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;$0 - $4&lt;/strong&gt; : A history of the five most recent DOM elements that you’ve selected in the elements panel, $0 being the last.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;$$()&lt;/strong&gt; : A shortened version of document.querySelectorAll() which returns an array of the given CSS selector.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;$()&lt;/strong&gt; : A shortened version of document.querySelector() which returns the first element, matching a given CSS selector. &lt;/li&gt;
&lt;/ol&gt;</content:encoded></item><item><title><![CDATA[CSS - Change CSS values using the mouse or keyboard]]></title><description><![CDATA[You can change numerical property values in DevTools using the mouse scroller or keyboard arrow keys. Keyboard Up and down change the value…]]></description><link>https://inspectelement.netlify.com/change-css-values-with-mouse-keyboard/</link><guid isPermaLink="false">https://inspectelement.netlify.com/change-css-values-with-mouse-keyboard/</guid><pubDate>Fri, 30 Aug 2019 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;You can change numerical property values in DevTools using the mouse scroller or keyboard arrow keys.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Keyboard&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Up and down change the value by 1.&lt;/li&gt;
&lt;li&gt;‘Alt + Up/Down’ to change the value by 0.1.&lt;/li&gt;
&lt;li&gt;‘Shift + Up/Down’ to change the value by 10.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Mouse&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;One scroll of the mouse wheel changes the value by 1.&lt;/li&gt;
&lt;/ul&gt;</content:encoded></item><item><title><![CDATA[HTML - Expand Child Nodes]]></title><description><![CDATA[Some nodes in HTML can contain hundreds of children. It’s often time consuming to run through
each node and click to expand. With DevTools…]]></description><link>https://inspectelement.netlify.com/expand-child-nodes/</link><guid isPermaLink="false">https://inspectelement.netlify.com/expand-child-nodes/</guid><pubDate>Thu, 29 Aug 2019 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Some nodes in HTML can contain hundreds of children. It’s often time consuming to run through
each node and click to expand.&lt;/p&gt;
&lt;p&gt;With DevTools you can use ‘Alt + click’ to expand all the child nodes.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Hold Alt on your keyboard.&lt;/li&gt;
&lt;li&gt;Click the small arrow on the left of the DOM node.&lt;/li&gt;
&lt;/ol&gt;</content:encoded></item><item><title><![CDATA[JavaScript - Unminify JS Files]]></title><description><![CDATA[Within the sources tab in DevTools you can view all the resources used to load the page. JavaScript files are minimised to reduce size and…]]></description><link>https://inspectelement.netlify.com/unminify-javascript/</link><guid isPermaLink="false">https://inspectelement.netlify.com/unminify-javascript/</guid><pubDate>Wed, 28 Aug 2019 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Within the sources tab in DevTools you can view all the resources used to load the page.&lt;/p&gt;
&lt;p&gt;JavaScript files are minimised to reduce size and load time but this makes them illegible. &lt;/p&gt;
&lt;p&gt;Click on a JavaScript file within the ‘page’ pane and if it’s minimised use the steps below.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Naviage to the ‘editor’ pane. (The pane showing the code)&lt;/li&gt;
&lt;li&gt;Find the two curly brackets at the bottom. They will look like this &lt;code class=&quot;language-text&quot;&gt;{ }&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Click them and you will given a formatted version of the JavaScript file selected. &lt;/li&gt;
&lt;/ol&gt;</content:encoded></item><item><title><![CDATA[CSS - Autocomplete CSS Properties]]></title><description><![CDATA[Can’t remember a CSS property name but know the value you need? Chrome DevTools has you covered! Within the element.style section in…]]></description><link>https://inspectelement.netlify.com/autocomplete-css-properties/</link><guid isPermaLink="false">https://inspectelement.netlify.com/autocomplete-css-properties/</guid><pubDate>Tue, 27 Aug 2019 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Can’t remember a CSS property name but know the value you need?&lt;/p&gt;
&lt;p&gt;Chrome DevTools has you covered!&lt;/p&gt;
&lt;p&gt;Within the element.style section in DevTools start typing the value you want to use. If recognised, DevTools will create auto suggestions saving you time.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Example: You know you want your text to be ‘italic’ but can’t remember the ‘font-style’ property.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;ol&gt;
&lt;li&gt;Type ‘italic’ into the element.style section.&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;DevTools will auto suggest: &lt;/p&gt;
&lt;div class=&quot;gatsby-highlight&quot; data-language=&quot;css&quot;&gt;&lt;pre class=&quot;language-css&quot;&gt;&lt;code class=&quot;language-css&quot;&gt;&lt;span class=&quot;token property&quot;&gt;font-style&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;:&lt;/span&gt;italic&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Magic.&lt;/li&gt;
&lt;/ol&gt;</content:encoded></item></channel></rss>