Euro-Office is a new effort to create an European alternative to Microsoft Office
| blog | https://šime.eu |
| blog | https://šime.eu |
Euro-Office is a new effort to create an European alternative to Microsoft Office
Looks like CSSWG adopted the purple logo
financial literacy - about investment scams, cryptocurrency fraud
media literacy - about misinformation, deepfakes, manipulated content
??? - about phishing scams
Notice how phishing is not necessarily about money (paying for stuff, investing) or media (news articles, videos). For example, phishing can be a scam URL received via SMS that asks the user to enter sensitive personal information.
Can you tell CSS from BS? I tried, and it's hard.

The percentage of homepages with automatically detectable issues increased from 94.8 to 95.9 since last year, and I'm not at all surprised.
On an iPhone, you go into Settings > Display > Auto-lock. The Auto-lock screen consists of a list of options. You observe that there is a checkmark next to the “Never” option. You tap the “1 minute” option. You observe that the checkmark has moved to “1 minute” option. You lay down the iPhone without touching the display. The Auto-lock screen is still shown, and the checkmark is next to the “1 minute” option.
If you don’t touch the iPhone again, when will it auto-lock?
If you’ve ever tried to build a data table with a sticky header and a sticky first column, you know the pain: the reality was that only one of both would stick.
A recent change to CSS fixes this: `position: sticky` now plays nice with _single-axis scrollers_.

If you’ve ever tried to build a data table with a sticky header and a sticky first column, you know the pain. You’d think a simple position: sticky with top: 0 and left: 0 would be enough, but the reality was that only one of both would stick. A recent change to CSS fixes this: position: sticky now plays nice with single-axis scrollers, allowing you to have sticky elements that track different scroll containers on different axes. This change is available in Chrome 148.
I've been caught by this before, and I've seen other experienced #CSS devs get stuck on it:
* { color: deepPink; }
html#high-specificity { color: teal !important; }
If we put that ID on the root, and some text in our document, what color will the text be?