ProgrammerHQ

Recent Posts

  • October 28, 2017

    this keyword in Javascript

    I have only posted about CSS/Flexbox as of now. Today, I decided to post about Javascript and explaining this keyword is the best way to start.I have taken Colt Steel’s Web Developer Bootcamp. In that course, Elie has explained this keyword pretty...

  • October 27, 2017

    What is the use of align-self in Flexbox

    I have talked about justify-content, align-items and align-content to align flex-items. All of them are a property of container and applies for every flex-item inside the container. align-self comes into play when we want to align only one flex-it...

  • October 26, 2017

    Difference between align-items and align-content in Flexbox

    In my last post, I discussed justify-content. Today, I will talk about the difference between align-items and align-content.Below, I have some divs (flex-items) inside a container div (flex-container) in an HTML document. The CSS style is also giv...

  • October 25, 2017

    What is justify-content in Flexbox

    In my last post, I discussed about flexbox-wrap and order. Today, I will be talking about the role of justify-content in Flexbox.I will be using below code sample to explain justify-content. I have 6 divs (flex-items) inside a container div (flex-...

  • October 16, 2017

    Understanding wrapping and ordering in Flexbox

    In my last post I explained flex-direction. In this post I will be explaining flexbox-wrap and order.flex-wrapBy default the flex items will shrink if there is not enough room in container instead of moving to the next row. This happens because fl...