 
    
<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>display Archives - Complete, Concrete, Concise</title>
	<atom:link href="https://complete-concrete-concise.com/tag/display/feed/" rel="self" type="application/rss+xml" />
	<link>https://complete-concrete-concise.com/tag/display/</link>
	<description>Practical Information Without The Bloat</description>
	<lastBuildDate>Fri, 16 Nov 2018 16:27:08 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>
	<item>
		<title>HTML Flow and the CSS Box Model &#8211; the &#8216;Display&#8217; Property</title>
		<link>https://complete-concrete-concise.com/tutorials/webdev/front-end-basics/html-flow-and-the-css-box-model-the-display-property/</link>
		
		<dc:creator><![CDATA[richardsplanet]]></dc:creator>
		<pubDate>Mon, 16 Apr 2018 15:18:58 +0000</pubDate>
				<category><![CDATA[Front-End Basics]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[webdev]]></category>
		<guid isPermaLink="false">https://complete-concrete-concise.com/?p=3598</guid>

					<description><![CDATA[<p>Not all HTML boxes behave the same. Learn why.</p>
<p>The post <a href="https://complete-concrete-concise.com/tutorials/webdev/front-end-basics/html-flow-and-the-css-box-model-the-display-property/">HTML Flow and the CSS Box Model &#8211; the &#8216;Display&#8217; Property</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="preamble">Seeing that HTML elements are rendered as boxes, let’s take a closer look at it.</div>
<p>You’ve seen the following 5 CSS properties:</p>
<ol type="1">
<li>color</li>
<li>background-color</li>
<li>padding</li>
<li>border</li>
<li>margin</li>
</ol>
<p>It should be obvious that you can use these to give your documents some colour and life. We are still a little ways off from “professional” looking pages, but we’ll get there.<br />
Using <strong>border</strong> and <strong>margin</strong>, the box nature of HTML elements is quite obvious, as the <a href="https://complete-concrete-concise.com/sample/16-css.html">previous example</a> shows:<br />
<a href="https://complete-concrete-concise.com/wp-content/uploads/2018/04/17-css-flow.png"><img fetchpriority="high" decoding="async" class="aligncenter size-full wp-image-3601" src="https://complete-concrete-concise.com/wp-content/uploads/2018/04/17-css-flow.png" alt="Web page showing CSS boxes arounf HTML elements" width="599" height="549" /></a></p>
<h2>Contents</h2>
<ol type="1">
<li><a href="#html-flow">HTML Flow</a></li>
<li><a href="#box-display-modes">Box Display Modes</a>
<ol type="1">
<li><a href="#block">Block</a></li>
<li><a href="#inline">Inline</a></li>
<li><a href="#inline-block">Inline-Block</a></li>
<li><a href="#none">None</a></li>
</ol>
</li>
<li><a href="#conclusion">Conclusion</a></li>
<li><a href="#playing-around">Playing Around</a></li>
<li><a href="#references">References</a></li>
</ol>
<h2 id="html-flow">HTML Flow</h2>
<p>You may have noticed two things about the way HTML elements flow:</p>
<ol type="1">
<li>they flow from top to bottom. In other words, they stack one atop the other &#8211; never side by side. Even when enclosed inside another HTML element, they still stack from top to bottom.</li>
<li>they occupy the full width of the container they are in.</li>
</ol>
<p>There are exceptions, the <span class="html-tag">strong</span>, <span class="html-tag">em</span>, <span class="html-tag">i</span>, <span class="html-tag">mark</span>, and <span class="html-tag">a</span> elements only occupy the space of the content they enclose and do not stack.<br />
This is known as <strong>normal flow</strong>:</p>
<ol type="1">
<li>elements occupy the full width of the container they are in;</li>
<li>elements are rendered, from top to bottom, in the order they appear in the document;</li>
<li>exceptions to the first two rules only occupy the space they need to contain their content.</li>
</ol>
<p>This is customizable and in future tutorials we will see how to change the <strong>normal flow</strong> so HTML elements can appear side by side &#8211; like these two paragraphs:</p>
<div>
<p style="box-sizing: border-box; float: left; border: 2px solid green; max-width: 50%; padding: 0.5em; background: #F8FFF0;">Multum tibi esse animi scio; nam etiam antequam instrueres te praeceptis salutaribus et dura vincentibus, satis adversus fortunam placebas tibi, et multo magis postquam cum illa manum conseruisti viresque expertus es tuas, quae numquam certam dare fiduciam sui possunt nisi cum multae difficultates hinc et illinc apparuerunt, aliquando vero et propius accesserunt.</p>
<p style="box-sizing: border-box; float: right; border: 2px solid red; max-width: 50%; padding: 0.5em; background: #FFF0F8;">Multum tibi esse animi scio; nam etiam antequam instrueres te praeceptis salutaribus et dura vincentibus, satis adversus fortunam placebas tibi, et multo magis postquam cum illa manum conseruisti viresque expertus es tuas, quae numquam certam dare fiduciam sui possunt nisi cum multae difficultates hinc et illinc apparuerunt, aliquando vero et propius accesserunt.</p>
<div style="clear: both;"></div>
</div>
<p>For now, just assume that HTML elements obey the rules for <strong>normal flow</strong> and are displayed in the order they appear in your HTML document.<a id="fnref1" class="footnote-ref" href="#fn1"><sup>1</sup></a></p>
<h2 id="box-display-modes">Box Display Modes</h2>
<p>Every HTML element is displayed as a box.<br />
Some boxes stack:</p>
<p style="border: 5px solid red; margin: 0.5em 0;">This is the first of several sample paragraphs.</p>
<p style="border: 5px solid red; margin: 0.5em 0;">Quereris incidisse te in hominem ingratum: si hoc nunc primum, age aut fortunae aut diligentiae tuae gratias. Sed nihil facere hoc loco diligentia potest nisi te malignum; nam si hoc periculum vitare volueris, non dabis beneficia; ita ne apud alium pereant, apud te peribunt. Non respondeant potius quam non dentur: et post malam segetem serendum est. Saepe quidquid perierat adsidua infelicis soli sterilitate unius anni restituit ubertas.</p>
<p style="border: 5px solid red; margin: 0.5em 0;">Est tanti, ut gratum invenias, experiri et ingratos. Nemo habet tam certam in beneficiis manum ut non saepe fallatur: aberrent, ut aliquando haereant. Post naufragium maria temptantur; feneratorem non fugat a foro coctor. Cito inerti otio vita torpebit, si relinquendum est quidquid offendit. Te vero benigniorem haec ipsa res faciat; nam cuius rei eventus incertus est, id ut aliquando procedat saepe temptandum est.</p>
<p style="border: 5px solid red; margin: 0.5em 0;">This is the last sample paragraph.</p>
<p>Some boxes can be embedded inside other boxes:</p>
<ol style="border: blue 5px solid;">
<li style="border: 5px green solid; margin: 2px;">This is the first of several list items.</li>
<li style="border: 5px green solid; margin: 2px;">Sed de isto satis multa in iis libris locuti sumus qui de beneficiis inscribuntur: illud magis quaerendum videtur, quod non satis, ut existimo, explicatum est, an is qui profuit nobis, si postea nocuit, paria fecerit et nos debito solverit.</li>
<li style="border: 5px green solid; margin: 2px;">This is the penultimate list item.</li>
<li style="border: 5px green solid; margin: 2px;">Adice, si vis, et illud: multo plus postea nocuit quam ante profuerat. Si rectam illam rigidi iudicis sententiam quaeris, alterum ab altero absolvet et dicet, ‘quamvis iniuriae praeponderent, tamen beneficiis donetur quod ex iniuria superest’.</li>
</ol>
<p>But for some HTML elements, the boxes behave a little differently:</p>
<p style="border: 5px solid red;">Elements like <strong style="border: 5px solid black;">&lt;strong&gt;</strong>, can overlap the containing box.</p>
<p>If boxes are supposed to stack or nest, why don’t HTML elements like <span class="html-tag">strong</span>, <span class="html-tag">em</span>, <span class="html-tag">i</span>, <span class="html-tag">mark</span>, and <span class="html-tag">a</span> stack or nest “properly” inside other HTML elements?<br />
In other words:</p>
<p style="border: 5px solid red;">Why doesn’t <strong style="border: 5px solid black; display: inline-block; margin: 2px;">&lt;strong&gt;</strong> nest like this?</p>
<p>There are 4 different ways the box of an HTML element can be rendered. It is controlled using the CSS <strong>display</strong> property.</p>
<h3 id="block">Block</h3>
<p>HTML elements which stack and occupy the width of the container they are in have their <strong>display</strong> property set to <em>block</em>. In other words, <em>block</em> HTML elements break the flow of the content to set up a new box.</p>
<div id="cb2" class="sourceCode">
<pre class="sourceCode css"><code class="sourceCode css"><a id="cb2-1" class="sourceLine" data-line-number="1"></a>strong {
<a id="cb2-2" class="sourceLine" data-line-number="2"></a>  <span class="kw">display</span>: <span class="dv">block</span>;
<a id="cb2-3" class="sourceLine" data-line-number="3"></a>  <span class="kw">border</span>: <span class="dv">5px</span> <span class="dv">solid</span> <span class="dv">black</span>;
<a id="cb2-4" class="sourceLine" data-line-number="4"></a>}</code></pre>
</div>
<p>The code snippet above sets all <span class="html-tag">strong</span> tags to display in <em>block</em> mode. This means all <span class="html-tag">strong</span> elements will:</p>
<ol type="1">
<li>stack;</li>
<li>occupy the full width of the container they are in.</li>
</ol>
<p>Combining it with <span class="html-tag">p</span> tags having the following style:</p>
<div id="cb3" class="sourceCode">
<pre class="sourceCode css"><code class="sourceCode css"><a id="cb3-1" class="sourceLine" data-line-number="1"></a>p {
<a id="cb3-2" class="sourceLine" data-line-number="2"></a>  <span class="kw">border</span>: <span class="dv">5px</span> <span class="dv">solid</span> <span class="dv">red</span>;
<a id="cb3-3" class="sourceLine" data-line-number="3"></a>}</code></pre>
</div>
<p>We would get the following:</p>
<p style="border: 5px red solid;">Why is <strong style="display: block; border: 5px solid black;">strong</strong> behaving strangely?</p>
<p>It is very unlikely you will be changing the <strong>display</strong> of non-block elements to <em>block</em>. If you find yourself doing this, you are probably structuring your content incorrectly.</p>
<h3 id="inline">Inline</h3>
<p>HTML elements which do not stack and which expand only enough to contain their content have their <strong>display</strong> property set to <em>inline</em>. In other words, <em>inline</em> HTML elements do not break the flow of the content.<br />
The HTML elements <span class="html-tag">strong</span>, <span class="html-tag">em</span>, <span class="html-tag">i</span>, <span class="html-tag">mark</span>, and <span class="html-tag">a</span> are <em>inline</em> elements:</p>
<ol type="1">
<li>they only occupy the space of their content &#8211; not the full width of any container they are in;</li>
<li>their height is equal to the height of their content;<a id="fnref2" class="footnote-ref" href="#fn2"><sup>2</sup></a></li>
<li>they ignore the <strong>margin</strong> property for their top and bottom.</li>
</ol>
<p>It is very unlikely you will be changing the <strong>display</strong> of non-inline elements to <em>inline</em>. If you find yourself doing this, you are probably structuring your content incorrectly.<br />
Having said that, there is a common use for changing the display from <em>block</em> to <em>inline</em>: navigation bars (or menu bars).<br />
Most navigation bars on websites are actually unordered lists that have had their <strong>display</strong> property changed from <em>block</em> to <em>inline</em>.<br />
For example, applying the following style to <span class="html-tag">li</span> tags:</p>
<div id="cb4" class="sourceCode">
<pre class="sourceCode css"><code class="sourceCode css"><a id="cb4-1" class="sourceLine" data-line-number="1"></a>li {
<a id="cb4-2" class="sourceLine" data-line-number="2"></a>  <span class="kw">display</span>: <span class="dv">inline</span>;
<a id="cb4-3" class="sourceLine" data-line-number="3"></a>  <span class="kw">padding</span>:<span class="dv">20px</span>;
<a id="cb4-4" class="sourceLine" data-line-number="4"></a>}
<a id="cb4-5" class="sourceLine" data-line-number="5"></a>
<a id="cb4-6" class="sourceLine" data-line-number="6"></a>ul {
<a id="cb4-7" class="sourceLine" data-line-number="7"></a>  <span class="kw">border</span>: <span class="dv">1px</span> <span class="dv">solid</span> <span class="dv">black</span>;
<a id="cb4-8" class="sourceLine" data-line-number="8"></a>}</code></pre>
</div>
<p>And the following HTML code:</p>
<div id="cb5" class="sourceCode">
<pre class="sourceCode html"><code class="sourceCode html"><a id="cb5-1" class="sourceLine" data-line-number="1"></a><span class="kw">&lt;ul&gt;</span>
<a id="cb5-2" class="sourceLine" data-line-number="2"></a><span class="kw">&lt;li&gt;&lt;a</span><span class="ot"> href=</span><span class="st">"#"</span><span class="kw">&gt;</span>Home<span class="kw">&lt;/a&gt;&lt;/li&gt;</span>
<a id="cb5-3" class="sourceLine" data-line-number="3"></a><span class="kw">&lt;li&gt;&lt;a</span><span class="ot"> href=</span><span class="st">"#"</span><span class="kw">&gt;</span>About<span class="kw">&lt;/a&gt;&lt;/li&gt;</span>
<a id="cb5-4" class="sourceLine" data-line-number="4"></a><span class="kw">&lt;li&gt;&lt;a</span><span class="ot"> href=</span><span class="st">"#"</span><span class="kw">&gt;</span>Blog<span class="kw">&lt;/a&gt;&lt;/li&gt;</span>
<a id="cb5-5" class="sourceLine" data-line-number="5"></a><span class="kw">&lt;li&gt;&lt;a</span><span class="ot"> href=</span><span class="st">"#"</span><span class="kw">&gt;</span>Privacy<span class="kw">&lt;/a&gt;&lt;/li&gt;</span>
<a id="cb5-6" class="sourceLine" data-line-number="6"></a><span class="kw">&lt;/ul&gt;</span></code></pre>
</div>
<p>Will render the list horizontally, giving it the appearance of a navigation bar:<a id="fnref3" class="footnote-ref" href="#fn3"><sup>3</sup></a></p>
<ul style="border: 1px solid black;">
<li style="display: inline; padding: 20px;"><a href="#">Home</a></li>
<li style="display: inline; padding: 20px;"><a href="#">About</a></li>
<li style="display: inline; padding: 20px;"><a href="#">Blog</a></li>
<li style="display: inline; padding: 20px;"><a href="#">Privacy</a></li>
</ul>
<p>In a future tutorial, we will see how to set styles more specifically so we don’t affect the behaviour of all instances of an element in a document. The example above makes all lists in the document horizontal &#8211; which is, probably, not the behaviour you want.</p>
<h3 id="inline-block">Inline-Block</h3>
<p>This <strong>display</strong> mode combines the features of <em>block</em> and <em>inline</em> display:</p>
<ol type="1">
<li>like <em>inline</em> elements, it does not break the flow of the content;</li>
<li>unlike <em>inline</em> elements, the contents receive a full box that fully nests inside whatever container they are in;</li>
<li>they apply the <strong>margin</strong> property to their top and bottom.</li>
</ol>
<p>Using this property, we can make <em>inline</em> elements nest more “intuitively”:</p>
<div id="cb6" class="sourceCode">
<pre class="sourceCode css"><code class="sourceCode css"><a id="cb6-1" class="sourceLine" data-line-number="1"></a>strong {
<a id="cb6-2" class="sourceLine" data-line-number="2"></a>  <span class="kw">border</span>:<span class="dv">5px</span> <span class="dv">solid</span> <span class="dv">black</span>;
<a id="cb6-3" class="sourceLine" data-line-number="3"></a>  <span class="kw">margin</span>:<span class="dv">2px</span>;
<a id="cb6-4" class="sourceLine" data-line-number="4"></a>}</code></pre>
</div>
<p>Which give us the following result:</p>
<p style="border: 5px solid red;">Now <strong style="border: 5px solid black; display: inline-block; margin: 2px;">&lt;strong&gt;</strong> nest like a block.</p>
<p>This <strong>display</strong> property is more commonly used. It is one way to create columns of content. For example:</p>
<div id="cb7" class="sourceCode">
<pre class="sourceCode css"><code class="sourceCode css"><a id="cb7-1" class="sourceLine" data-line-number="1"></a>p {
<a id="cb7-2" class="sourceLine" data-line-number="2"></a>  <span class="kw">display</span>:<span class="dv">inline-block</span>;
<a id="cb7-3" class="sourceLine" data-line-number="3"></a>  <span class="kw">margin</span>:<span class="dv">2px</span>;
<a id="cb7-4" class="sourceLine" data-line-number="4"></a>  <span class="kw">border</span>:<span class="dv">5px</span> <span class="dv">solid</span> <span class="dv">red</span>;
<a id="cb7-5" class="sourceLine" data-line-number="5"></a>  <span class="kw">padding</span>:<span class="dv">5px</span>;
<a id="cb7-6" class="sourceLine" data-line-number="6"></a>  <span class="kw">width</span>:<span class="dv">150px</span>;
<a id="cb7-7" class="sourceLine" data-line-number="7"></a>}</code></pre>
</div>
<p>When applied to the following:<a id="fnref4" class="footnote-ref" href="#fn4"><sup>4</sup></a></p>
<div id="cb8" class="sourceCode">
<pre class="sourceCode html"><code class="sourceCode html"><a id="cb8-1" class="sourceLine" data-line-number="1"></a><span class="kw">&lt;p&gt;</span>This is multicolumn example using inline-block.
<a id="cb8-2" class="sourceLine" data-line-number="2"></a>  It also introduces the 'width' property, which
<a id="cb8-3" class="sourceLine" data-line-number="3"></a>  sets the width of the content.<span class="kw">&lt;/p&gt;</span>
<a id="cb8-4" class="sourceLine" data-line-number="4"></a><span class="kw">&lt;p&gt;</span>This is multicolumn example using inline-block.
<a id="cb8-5" class="sourceLine" data-line-number="5"></a>  It also introduces the 'width' property, which
<a id="cb8-6" class="sourceLine" data-line-number="6"></a>  sets the width of the content.<span class="kw">&lt;/p&gt;</span>
<a id="cb8-7" class="sourceLine" data-line-number="7"></a><span class="kw">&lt;p&gt;</span>This is multicolumn example using inline-block.
<a id="cb8-8" class="sourceLine" data-line-number="8"></a>  It also introduces the 'width' property, which
<a id="cb8-9" class="sourceLine" data-line-number="9"></a>  sets the width of the content.<span class="kw">&lt;/p&gt;</span></code></pre>
</div>
<p style="display: inline-block; margin: 2px; border: 5px solid red; padding: 5px; width: 150px;">This is a multicolumn example using inline block. It also introduces the ‘width’ property, which sets the width of the content.</p>
<p style="display: inline-block; margin: 2px; border: 5px solid red; padding: 5px; width: 150px;">This is a multicolumn example using inline block. It also introduces the ‘width’ property, which sets the width of the content.</p>
<p style="display: inline-block; margin: 2px; border: 5px solid red; padding: 5px; width: 150px;">This is a multicolumn example using inline block. It also introduces the ‘width’ property, which sets the width of the content.</p>
<p>Again, this application is too broad, since it affects all <span class="html-tag">p</span> elements and not just those we might want arranged in columns.<a id="fnref5" class="footnote-ref" href="#fn5"><sup>5</sup></a>. In a future tutorial, we will see how to limit the scope of styles we apply.</p>
<h3 id="none">None</h3>
<p>Setting the <strong>display</strong> property to <em>none</em> effectively removes the styled element (and any children it may contain) from the rendered display. In other words, it is not rendered at all and no space is reserved for it in the display. In technical terms, we say the space is collapsed.<br />
For static documents, it doesn’t make much sense to style the <strong>display</strong> to <em>none</em>. However, with dynamic pages (pages using JavaScript &#8211; covered in a much later tutorial), this can be used to toggle parts of the content on and off.</p>
<h2 id="conclusion">Conclusion</h2>
<ol type="1">
<li>HTML elements flow from the top to the bottom of the page in the order they appear in the HTML document.</li>
<li>The default behaviour for HTML elements is either <em>block</em> or <em>inline</em>.</li>
<li><em>Block</em> elements break the flow of the content and stack and occupy the full width of the container they are in.</li>
<li><em>Inline</em> elements maintain the flow of the content and occupy only the width of the content they contain. They do not respect the top and bottom margin settings.</li>
<li><em>Inline-block</em> elements combine features from both <em>block</em> and <em>inline</em> elements:
<ul>
<li>they maintain the flow of the content and occupy only the width of their contents</li>
<li>they completely nest inside their container and respect the top and bottom margin settings.</li>
</ul>
</li>
<li>Elements with <strong>display</strong> set to <em>none</em> are completely removed from the <strong>normal flow</strong> of the document. They act as if they don’t exist.</li>
<li>You should think carefully before changing the <strong>display</strong> behaviour of elements. Changing their behaviour, usually, indicates an improperly structured document. However, there are exceptions:
<ul>
<li>the <em>inline</em> mode is often applied to unordered lists to create a navigation bar (menu bar)</li>
<li>the <em>inline-block</em> mode is one way that multicolumn documents can be created.</li>
</ul>
</li>
</ol>
<h2 id="playing-around">Playing Around</h2>
<p>The best way to learn is to play around with what you have learned.<br />
This tutorial has explained a little more about how HTML content flows and delved a little deeper in to how the element boxes behave.<br />
Play around with these display properties a bit to get a feel for how <em>block</em>, <em>inline</em>, and <em>inline-block</em> differ in behaviour.<br />
In general, you are not likely to be changing them, but it is important to know how they work.<br />
In the next tutorial, we’ll see how to apply styles more selectively to only certain elements.</p>
<h2 id="references">References</h2>
<ol type="1">
<li><a href="https://www.w3.org/TR/CSS2/visuren.html#display-prop">Display Properties</a></li>
</ol>
<div class="prev"><a href="https://complete-concrete-concise.com/tutorials/webdev/front-end-basics/a-css-example-with-boxes">Prev</a></div>
<div class="next"><a href="https://complete-concrete-concise.com/tutorials/webdev/front-end-basics/css-selecting-specific-elements-for-styling">Next</a></div>
<div class="clear"></div>
<section class="footnotes">
<hr />
<ol>
<li id="fn1">It is a good assumption because that is their default behaviour, you have to explicitly change that behaviour with CSS styling.<a class="footnote-back" href="#fnref1">↩</a></li>
<li id="fn2">We haven’t covered this yet, but unless you override it, the element will use the same line height and text size as the other content it is surrounded by. This will be covered in more detail in a future tutorial.<a class="footnote-back" href="#fnref2">↩</a></li>
<li id="fn3">As you can see, a navigation bar is simply a list of links.<a class="footnote-back" href="#fnref3">↩</a></li>
<li id="fn4">The CSS <strong>width</strong> property sets the width of the content. The padding, borders, and margin are extra on top of the width. This property will be discussed further in a future tutorial.<a class="footnote-back" href="#fnref4">↩</a></li>
<li id="fn5">There are many ways to do columns using CSS. This is just one way.<a class="footnote-back" href="#fnref5">↩</a></li>
</ol>
</section>
<p>The post <a href="https://complete-concrete-concise.com/tutorials/webdev/front-end-basics/html-flow-and-the-css-box-model-the-display-property/">HTML Flow and the CSS Box Model &#8211; the &#8216;Display&#8217; Property</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Ubuntu 13.04 &#8211; How to Display Hidden Files and Folders</title>
		<link>https://complete-concrete-concise.com/ubuntu-2/ubuntu-13-04/ubuntu-13-04-how-to-display-hidden-files-and-folders/</link>
		
		<dc:creator><![CDATA[richardsplanet]]></dc:creator>
		<pubDate>Mon, 29 Apr 2013 11:33:26 +0000</pubDate>
				<category><![CDATA[Ubuntu 13.04]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[folders]]></category>
		<category><![CDATA[hidden]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[show]]></category>
		<category><![CDATA[ubuntu 13.04]]></category>
		<guid isPermaLink="false">http://complete-concrete-concise.com/?p=2902</guid>

					<description><![CDATA[<p>Learn how to display hidden files in Ubuntu 13.04 running the Unity Desktop and using the Nautilus file manager.</p>
<p>The post <a href="https://complete-concrete-concise.com/ubuntu-2/ubuntu-13-04/ubuntu-13-04-how-to-display-hidden-files-and-folders/">Ubuntu 13.04 &#8211; How to Display Hidden Files and Folders</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="c1">
<p>This tutorial is for Ubuntu 13.04 running the Unity Desktop and using the Nautilus file manager &#8211; this is the default configuration for Ubuntu 13.04.</p>
<p>The instructions may be the same or similar for other versions but no guarantee is made.</p>
<div class="c2">
<p><strong>Note:</strong> for some reason, Nautilus has changed quite drastically in Ubuntu 13.04 from previous versions. Not sure, yet, if this is heavy Ubuntu customization or changes in Nautilus itself. On significant (minor?) change is that in the <u>About</u> dialog, it is now called <u>Files</u> &#8211; never mind that it shows up as <u>nautilus</u> in the process viewer.</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2013/04/1304-show-hidden-files-0.png" alt="" border="0" class="centered"/></div>
</div>
<p><strong>1) Open</strong> the <u>Files</u> application:</p>
<p><strong>2) Tap</strong> the <code>Alt</code> key. <span class="i1">Note: tapping the <code>Alt</code> key, means pressing it as though you intend to type it. It does not mean holding the key down.</span> This will bring up the HUD:</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2013/04/1304-show-hidden-files-01.png" alt="" border="0" class="centered"/></p>
<p><strong>3) Type</strong> <u>preferences</u> into the HUD query field:</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2013/04/1304-show-hidden-files-1.png" alt="" border="0" class="centered"/></p>
<p><strong>4) Press</strong> the <u>Enter</u> key. This will open the <u>Preferences</u> dialog:</p>
<div class="c1">
<p><strong>Note:</strong> you can press the <u>Enter</u> key as soon as <u>Preferences</u> is the topmost displayed option.</p>
<p>You can also select <u>Preferences</u> by clicking on it with your mouse, or navigating to it using the keyboard arrow keys and pressing <u>Enter</u>.</p>
</div>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2013/04/1304-show-hidden-files-2.png" alt="" border="0" class="centered"/></p>
<p><strong>5) Click</strong> on the <u>Show hidden and backup files</u> checkbox to enable it. <strong>Click</strong> on <u>Close</u></p>
<p>:<br />
<img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2013/04/1304-show-hidden-files-3.png" alt="" border="0" class="centered"/></p>
<p><strong>6) Restart</strong> the <u>Files</u> application to enable the setting.</p>
<div class="c2">
<p>I think this is a bug because I would expect the changes to take place immediately after closing the <u>Preferences</u> dialog.</p>
</div>

<p>The post <a href="https://complete-concrete-concise.com/ubuntu-2/ubuntu-13-04/ubuntu-13-04-how-to-display-hidden-files-and-folders/">Ubuntu 13.04 &#8211; How to Display Hidden Files and Folders</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Ubuntu 12.10 &#8211; How to Display / Show Hidden Files or Folders</title>
		<link>https://complete-concrete-concise.com/ubuntu-2/ubuntu-12-10/ubuntu-12-10-how-to-display-show-hidden-files-or-folders/</link>
		
		<dc:creator><![CDATA[richardsplanet]]></dc:creator>
		<pubDate>Thu, 18 Oct 2012 10:56:30 +0000</pubDate>
				<category><![CDATA[Ubuntu 12.10]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[folder]]></category>
		<category><![CDATA[folders]]></category>
		<category><![CDATA[hidden file]]></category>
		<category><![CDATA[hidden folder]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[show]]></category>
		<category><![CDATA[ubuntu 12.10]]></category>
		<category><![CDATA[view]]></category>
		<guid isPermaLink="false">http://complete-concrete-concise.com/?p=2372</guid>

					<description><![CDATA[<p>These instructions are for Ubuntu 12.10 running the Unity interface and using Nautilus as the default file browser &#8211; this is the default Ubuntu 12.10 configuration. It may work for other version combinations, but no guarantee is made. The default settings in the Nautilus file browser prevent you from seeing certain files and folders. These [&#8230;]</p>
<p>The post <a href="https://complete-concrete-concise.com/ubuntu-2/ubuntu-12-10/ubuntu-12-10-how-to-display-show-hidden-files-or-folders/">Ubuntu 12.10 &#8211; How to Display / Show Hidden Files or Folders</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="c1">
<p>These instructions are for Ubuntu 12.10 running the Unity interface and using Nautilus as the default file browser &#8211; this is the default Ubuntu 12.10 configuration.</p>
<p>It may work for other version combinations, but no guarantee is made.</p>
</div>
<p>The default settings in the Nautilus file browser prevent you from seeing certain files and folders. These files begin with a period (.) and tend to be configuration files and folders (directories).</p>
<div class="c2">
<p>The Unix / Linux convention for hiding a file or folder is to prefix the name with a period (.).</p>
</div>
<p>Sometimes it is necessary to be able to see them in order to be able to edit them or delete them.</p>
<p><strong>1) Open</strong> the Nautilus file browser. The default icon on the Unity Launcher opens your Home folder:</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2012/04/ubuntu-12.04-how-display-hidden-files-1.jpg" width="480" height="318" alt="" border="0" class="centered" /></p>
<p>By default, configuration files and folders are not shown:</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2012/04/ubuntu-12.04-how-display-hidden-files-2.jpg" width="480" height="318" alt="" border="0" class="centered" /></p>
<p><strong>2) Type</strong> <code>Ctrl + H</code> to display hidden files and folders.</p>
<div class="c2">
<p><strong>NOTE:</strong> typing <code>Ctrl + H</code> means: while holding down the <code>Ctrl</code> key, press the <code>H</code> key as though you intend to type it.</p>
<p><strong>DO NOT</strong> press the <code>Shift</code> key because <code>Ctrl + Shift + H</code> is different from <code>Ctrl +  H</code>.</p>
<p>It does <strong>NOT</strong> matter if your <code>Caps Lock</code> key is on or off.</p>
</div>
<p>Any hidden files or folders will be displayed along with the other files and folders.</p>
<div class="c4">
<p><strong>NOTE:</strong> there may <u>not</u> be any hidden files or folders to display.</p>
</div>

<p>The post <a href="https://complete-concrete-concise.com/ubuntu-2/ubuntu-12-10/ubuntu-12-10-how-to-display-show-hidden-files-or-folders/">Ubuntu 12.10 &#8211; How to Display / Show Hidden Files or Folders</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Ubuntu 12.04 &#8211; How to Display / Show Hidden Files or Folders</title>
		<link>https://complete-concrete-concise.com/ubuntu-2/ubuntu-12-04/ubuntu-12-04-how-to-display-show-hidden-files-or-folders/</link>
		
		<dc:creator><![CDATA[richardsplanet]]></dc:creator>
		<pubDate>Thu, 26 Apr 2012 07:00:00 +0000</pubDate>
				<category><![CDATA[Ubuntu 12.04]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[folder]]></category>
		<category><![CDATA[folders]]></category>
		<category><![CDATA[hidden file]]></category>
		<category><![CDATA[hidden folder]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[show]]></category>
		<category><![CDATA[ubuntu 12.04]]></category>
		<category><![CDATA[view]]></category>
		<guid isPermaLink="false">http://complete-concrete-concise.com/?p=1707</guid>

					<description><![CDATA[<p>These instructions are for Ubuntu 12.04 running the Unity interface and using Nautilus as the default file browser &#8211; this is the default Ubuntu 12.04 configuration. It may work for other version combinations, but no guarantee is made. The default settings in the Nautilus file browser prevent you from seeing certain files and folders. These [&#8230;]</p>
<p>The post <a href="https://complete-concrete-concise.com/ubuntu-2/ubuntu-12-04/ubuntu-12-04-how-to-display-show-hidden-files-or-folders/">Ubuntu 12.04 &#8211; How to Display / Show Hidden Files or Folders</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="c1">
<p>These instructions are for Ubuntu 12.04 running the Unity interface and using Nautilus as the default file browser &#8211; this is the default Ubuntu 12.04 configuration.</p>
<p>It may work for other version combinations, but no guarantee is made.</p>
</div>
<p>The default settings in the Nautilus file browser prevent you from seeing certain files and folders. These files begin with a period (.) and tend to be configuration files and folders (directories).</p>
<div class="c2">
<p>The Unix / Linux convention for hiding a file or folder is to prefix the name with a period (.).</p>
</div>
<p>Sometimes it is necessary to be able to see them in order to be able to edit them or delete them.</p>
<p><strong>1) Open</strong> the Nautilus file browser. The default icon on the Unity Launcher opens your Home folder:</p>
<p><img loading="lazy" decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2012/04/ubuntu-12.04-how-display-hidden-files-1.jpg" width="480" height="318" alt="" border="0" class="centered" /></p>
<p>By default, configuration files and folders are not shown:</p>
<p><img loading="lazy" decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2012/04/ubuntu-12.04-how-display-hidden-files-2.jpg" width="480" height="318" alt="" border="0" class="centered" /></p>
<p><strong>2) Type</strong> <code>Ctrl + H</code> to display hidden files and folders.</p>
<div class="c2">
<p><strong>NOTE:</strong> typing <code>Ctrl + H</code> means: while holding down the <code>Ctrl</code> key, press the <code>H</code> key as though you intend to type it.</p>
<p><strong>DO NOT</strong> press the <code>Shift</code> key because <code>Ctrl + Shift + H</code> is different from <code>Ctrl +  H</code>.</p>
<p>It does <strong>NOT</strong> matter if your <code>Caps Lock</code> key is on or off.</p>
</div>
<p>Any hidden files or folders will be displayed along with the other files and folders.</p>
<div class="c4">
<p><strong>NOTE:</strong> there may <u>not</u> be any hidden files or folders to display.</p>
</div>
<p><img loading="lazy" decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2012/04/ubuntu-12.04-how-display-hidden-files-3.jpg" width="480" height="444" alt="" border="0" class="centered" /></p>

<p>The post <a href="https://complete-concrete-concise.com/ubuntu-2/ubuntu-12-04/ubuntu-12-04-how-to-display-show-hidden-files-or-folders/">Ubuntu 12.04 &#8211; How to Display / Show Hidden Files or Folders</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Ubuntu 11.10 &#8211; How to View / Display Hidden Files or Folders</title>
		<link>https://complete-concrete-concise.com/ubuntu-2/ubuntu-11-10-how-to-view-display-hidden-files-or-folders/</link>
		
		<dc:creator><![CDATA[richardsplanet]]></dc:creator>
		<pubDate>Fri, 06 Apr 2012 14:05:57 +0000</pubDate>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ubuntu 11.10]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[folder]]></category>
		<category><![CDATA[folders]]></category>
		<category><![CDATA[hidden]]></category>
		<category><![CDATA[hidden file]]></category>
		<category><![CDATA[hidden folder]]></category>
		<category><![CDATA[show]]></category>
		<category><![CDATA[ubuntu 11.10]]></category>
		<category><![CDATA[view]]></category>
		<guid isPermaLink="false">http://complete-concrete-concise.com/?p=1638</guid>

					<description><![CDATA[<p>These instructions are for Ubuntu 11.10 with the Unity interface and using Nautilus as the default file browser &#8211; this is the default Ubuntu 11.10 configuration. It may work for other version combinations, but no guarantee is made. The default settings in the Nautilus file browser prevent you from seeing certain files and folders. These [&#8230;]</p>
<p>The post <a href="https://complete-concrete-concise.com/ubuntu-2/ubuntu-11-10-how-to-view-display-hidden-files-or-folders/">Ubuntu 11.10 &#8211; How to View / Display Hidden Files or Folders</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="c1">
<p>These instructions are for Ubuntu 11.10 with the Unity interface and using Nautilus as the default file browser &#8211; this is the default Ubuntu 11.10 configuration.</p>
<p>It may work for other version combinations, but no guarantee is made.</p>
</div>
<p>The default settings in the Nautilus file browser prevent you from seeing certain files and folders. These files begin with a period (.) and tend to be configuration files and folders (directories).</p>
<div class="c2">
<p>The Unix / Linux convention for hiding a file or folder is to prefix the name with a period (.).</p>
</div>
<p>Sometimes it is necessary to be able to see them in order to be able to edit them or delete them.</p>
<p><strong>1) Open</strong> the Nautilus file browser. The default icon on the Unity strip opens your Home folder:</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2012/04/ubuntu-11.10-how-to-view-hidden-folders-and-files-0.jpg" alt="" border="0" class="centered" /></p>
<p>By default, configuration files and folders are not shown:</p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2012/04/ubuntu-11.10-how-to-view-hidden-folders-and-files-1.png" alt="" border="0" class="centered" /></p>
<p><strong>2) Type</strong> <u>Ctrl+H</u> to display hidden files and folders. <span class="i1"><strong>NOTE:</strong> typing Ctrl+H means: while holding down the <u>Ctrl</u> key, press the <u>H</u> key as though you intend to type it. <strong>DO NOT</strong> press the <u>shift</u> key because <u>Ctrl+Shift+H</u> is different from <u>Ctrl+H</u></p>
<p></span></p>
<p>Any hidden files or folders will be displayed along with the other files and folders. <span class="i1"><strong>NOTE:</strong> there may <u>not</u> be any hidden files or folders to display.</p>
<p></span></p>
<p><img decoding="async" src="//complete-concrete-concise.com/wp-content/uploads/2012/04/ubuntu-11.10-how-to-view-hidden-folders-and-files-2.png" alt="" border="0" class="centered" /></p>

<p>The post <a href="https://complete-concrete-concise.com/ubuntu-2/ubuntu-11-10-how-to-view-display-hidden-files-or-folders/">Ubuntu 11.10 &#8211; How to View / Display Hidden Files or Folders</a> appeared first on <a href="https://complete-concrete-concise.com">Complete, Concrete, Concise</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
