<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Webdev on dlow's blog</title><link>https://blog.dlow.me/tags/webdev/</link><description>Recent content in Webdev on dlow's blog</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Sun, 19 Apr 2020 08:28:00 +0000</lastBuildDate><atom:link href="https://blog.dlow.me/tags/webdev/index.xml" rel="self" type="application/rss+xml"/><item><title>Flexbox for human</title><link>https://blog.dlow.me/programming/webdev/flexbox-for-human/</link><pubDate>Sun, 19 Apr 2020 08:28:00 +0000</pubDate><guid>https://blog.dlow.me/programming/webdev/flexbox-for-human/</guid><description>&lt;style> 
.container {
 border: 1px solid #c3c3c3;
 display: flex;
flex-direction: row;
}
.container div {
 width: 60px;
 height: 60px;
}
&lt;/style>
&lt;div class="container" style="width: 100px; height: 100px; justify-content: center; align-items: center">
 &lt;div style="background-color:coral; display: flex; justify-content: center; align-items: center;">Easy :)&lt;/div>
&lt;/div>
&lt;/div>
&lt;p>Flexbox is great and makes centering things easy, and that&amp;rsquo;s mostly what I&amp;rsquo;ve ever used it for. However, when I want more complex layout arrangement I find myself just searching for answers on stack overflow without actually learning how to do it. I decided to make an attempt to understand flexbox properly and share my findings in this post.&lt;/p></description></item></channel></rss>