count: 0
Sunday September 8 2024
Can't get away from Flexbox entirely. At this date, I found that Flexbox was easiest (or simplest) to work with when working on utilities. While utilities often involve a bit of layout work, the bulk of the task is a utility. One example is a complex responsive navigation system. If it is a simple...
Read full article
count: 0
Sunday September 8 2024
Look at all the major CSS frameworks and you'll quickly discover that they all are based on a 12 column responsive grid. Most use Flexbox, some use CSS Grid. Some even use both. I recently inspected the code of one CSS Framework and discovered they had written the CSS Grid portion to completely...
Read full article
count: 0
Monday September 2 2024

Rethinking this issue.
On initial view, it appears the answer is clear: using both makes sense. Flexbox has some features not available in CSS Grid (auto width columns, for example) while CSS Grid has features not available (or broken) in Flexbox (gap, for example, doesn't work in "wrap" mode of...
Read full article
count: 0
Sunday August 18 2024
In a previous article, I stated that I refuse to create any code to support Internet Explorer (IE).
It's worth your time to take a quick side trick and read the security issues in IE.
IE was notorious. Hackers exploited the vulnerabilities ... users paid the price with defaced websites, data...
Read full article
count: 0
Saturday August 17 2024
The first available release of Flexbox was generally available in 2013.. CSS Grid defined in 2012 and generally available in 2017. CSS Grid is also known as CSS Grid Layout.
Both have strengths and weaknesses. Does CSS Grid replace Flexbox? Not by my recknoning.
I think of CSS Grid as a "layout"...
Read full article
count: 0
Friday August 16 2024

Have to tell the truth here ... I've been avoiding CSS Grid. I really didn't get how it could either replace Flexbox or co-exist.
I had a similar experience when Flexbox first hit the scene. To that point, and like everyone else, my company used floats to achieve columns. We tried, emphasis on...
Read full article
count: 0
Wednesday August 14 2024
So many different css "frameworks", it's getting ridiculous. Copies and hacks of others' work. Very little is net new. It does create a bit of a problem ... many of these CSS "frameworks" start off on a cheery note and then end up as "stalled development" or abandoned entirely. You can also add in...
Read full article
count: 0
Saturday August 10 2024

In the previous two articles (titled started with CSS Nesting), I used custom form elements as an example of CSS Nesting.
The first example was a direct replacement for just the form element itself, it would fail when adding text. The second example expanded on that and was a full replacement for...
Read full article
count: 0
Thursday August 8 2024

In the first example, I posted some code for a checkbox switch. That worked, but only replaced the checkbox element. If you attempt to put text beside it, the code fails. The code is based on an assumption that it will be an on/off switch with some other HTML element doing the explaining.
This is...
Read full article
count: 0
Thursday August 1 2024
Selectors have long been the domain of LESS and SASS pre-processors.
They are also native to CSS too – along with combinators, child and appended nested selectors.
To illustrate this, I will post the code to recent development for My CSS Framework (blade.css) – a checkbox toggle switch. You...
Read full article