How to Section Your HTML
The sectioning elements in HTML5 are <nav>
, <aside>
, <article>
, and <section>
. <body>
is also kind of a sectioning element since all content lying inside of it is part of the default document section.
Here is …
Daniel Tonon is an innovative multi-award winning interface developer currently working at NTT Canberra. He is a front end specialist and accessibility expert with over 8 years of web development experience. He is also an avid innovator in the open source community.
The sectioning elements in HTML5 are <nav>
, <aside>
, <article>
, and <section>
. <body>
is also kind of a sectioning element since all content lying inside of it is part of the default document section.
Here is …
Autoprefixer is now up to version 9.3.1 and there have been a lot of updates since I wrote the original three-part CSS Grid in IE series — the most important update of which is the new grid-areas system. This is …
This is the third and final part in a three-part series about using CSS grid safely in Internet Explorer 11 (IE11) without going insane.
In Part 1, I covered some of the common misconceptions that people have about IE11’s …
In Part 1 of this series, I debunked a few misconceptions that many people have around the Internet Explorer (IE) implementation of CSS grid. This article builds on that knowledge. It would be best to go back and read …
This is the first in a three-part series all about how to use CSS grid in a way that will work not only in modern browsers but also in Internet Explorer (IE). Imagine writing CSS grid code without having to …
BEM (Block Element Modifier) is a popular CSS class naming convention that makes CSS easier to maintain. This article assumes that you are already familiar with the naming convention. If not you can learn more about it at getbem.com to …