惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

F
Fortinet All Blogs
宝玉的分享
宝玉的分享
酷 壳 – CoolShell
酷 壳 – CoolShell
T
The Exploit Database - CXSecurity.com
Help Net Security
Help Net Security
腾讯CDC
Project Zero
Project Zero
C
CXSECURITY Database RSS Feed - CXSecurity.com
IT之家
IT之家
C
Cyber Attacks, Cyber Crime and Cyber Security
T
Tailwind CSS Blog
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
D
Darknet – Hacking Tools, Hacker News & Cyber Security
L
LINUX DO - 最新话题
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
T
Threatpost
N
News | PayPal Newsroom
C
Cybersecurity and Infrastructure Security Agency CISA
Hacker News - Newest:
Hacker News - Newest: "LLM"
S
SegmentFault 最新的问题
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
P
Proofpoint News Feed
A
Arctic Wolf
B
Blog RSS Feed
Forbes - Security
Forbes - Security
P
Privacy & Cybersecurity Law Blog
Attack and Defense Labs
Attack and Defense Labs
V2EX - 技术
V2EX - 技术
P
Proofpoint News Feed
I
Intezer
Application and Cybersecurity Blog
Application and Cybersecurity Blog
阮一峰的网络日志
阮一峰的网络日志
aimingoo的专栏
aimingoo的专栏
T
Tenable Blog
MyScale Blog
MyScale Blog
U
Unit 42
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
WordPress大学
WordPress大学
W
WeLiveSecurity
D
DataBreaches.Net
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
G
GRAHAM CLULEY
有赞技术团队
有赞技术团队
Martin Fowler
Martin Fowler
罗磊的独立博客
The Last Watchdog
The Last Watchdog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
Vulnerabilities – Threatpost
美团技术团队
Microsoft Security Blog
Microsoft Security Blog

Stefan Judis Web Development

Michelle Barker on Stage Fright Web Weekly #196 Escape from Average (#note) Web Weekly #194 Web Weekly #193 Web Weekly #192 Web Weekly #191 Web Weekly #190 Web Weekly #189 Web Weekly #188 Intl can localize units, too! The scope of type guards and assertion functions Web Weekly #187 Web Weekly #186 Web Weekly #185 New lines are removed from WHATWG URLs Web Weekly #184 Nobody owes you anything How to scale elements and their layout with CSS "zoom" Notes on relying on the ARIA Authoring Practices Guide Web Weekly #183 Web Weekly #182 How to style the found search / "find in page" substrings Web Weekly #181 Web Weekly #180 ARIA roles can remove their children’s semantics Clean up your Mac with open source The Trust Equation Firefox DevTools hides unreferenced CSS variables
Web Weekly #195
2026-06-22 · via Stefan Judis Web Development

Guten Tag! Guten Tag! 👋 

Did you check out the new WebKit grid-lanes resources already? Do you "view transition" with match-element? And have you heard of HTML streaming maybe becoming a thing?

Turn on the Web Weekly tune and find some answers below. Enjoy!

Pablo says:

I loved the cinematography, choreography and the whole bad-boys-from-high-school vibe.

Do you want to share your favorite song with the Web Weekly community? Hit reply; there are five more songs left in the queue.


Let's open this week with some fancy CSS grid stuff!

.grid {     grid-auto-columns: 1fr;     grid-auto-flow: column; }

Peter-Paul explained how the grid layout algorithm works. For most cases you don't need to think about the internals, but it's good to know how things work. If you don't know what grid-auto-flow does, this post is for you!

Masonry grid example with controls and source code below.

And speaking of the grid algorithm, things get more and more complicated when you consider the new display: grid-lanes (Safari-only so far). Our friends at WebKit released a new cheatsheet with a built-in configurator and lots of examples. It has strong vibes of the CSS-Tricks materials back in the day!

A CSS grid showing how gaps will be filled.

And if all this isn't enough, Patrick published a tutorial explaining alignment in the new masonry world.

That's some funky new CSS we'll be able to use eventually! 🎉


If you enjoy Web Weekly, share it with your friends and family.

A quick "repost" really helps this indie newsletter grow. Thank you! ❤️


Web Weekly Housekeeping 

A huge bag of karma points goes to Caspar, Den, Marco, Savio, and Zoe this week. 50 people now support Web Weekly financially, thank you all! ❤️

If you enjoy Web Weekly, give back with a small monthly donation on Patreon or GitHub Sponsors.

The state of content creation is rough these days, and while I have let go of the idea of making this newsletter a sustainable income, every tiny support helps me keep going.

Something that made me smile this week 

no slop grenade.  Stop throwing AI-generated walls of text into conversations.

You know that I'm a sucker for single-purpose URLs and this one is right up my alley.

Don't do it

No code 

Web development trivia 

pushState(state, unused); pushState(state, unused, url);

Here's something for you to shine at nerdy dinner parties. Did you know that history.pushState has a parameter that's "officially" unused? Alex gives a nice history lesson.

Don't use the unused

TIL — there's three ways to ignore files in Git 

$ git config --global core.excludesFile ~/.gitignore_global

So, I've been using global Git ignores since forever (bye bye .DS_Store), but I didn't know .git/info/exclude is a thing.

Ignore

view-transition-name: match-element 

  .card {     view-transition-name: match-element;     view-transition-class: card;   }

I can't be the only one not realizing match-element works across browsers these days, can I? Bramus explains when to use match-element or go for the advanced attr() CSS function.

Match it!

Streaming HTML? 

<div>   <?start name="another-placeholder">   Loading…   <?end> </div>  ...  <template for="another-placeholder">   Here is some <em>HTML content</em>! </template>

I've got no idea how I could have missed that, but Ollie shared that streaming HTML might become a thing. Granted, it's very early days still but this is exciting. It's yet another example of framework patterns entering the web!

Stream

The wonderful weird web – Clues by Sam 

Four cards with three characters showing their job and clues for each.

I've seen multiple people talk about the logic puzzle game "Clues by Sam". And I must admit, it's a lot of fun!

Solve some puzzles

MDN now has an MCP server 

Claude conversation asking for browser support of container style queries.

I know that many Web Weekly readers aren't big AI fans. However, the new MDN MCP server is very useful to access docs and browser support data.

Ask MDN

There's a prop for that... 

What JS knows, now CSS knows.

Adam released a new JS library that transforms JS runtime values into CSS custom properties. Just like that? Yes, if you want to use form values, pointer positions or even the current time in CSS, prop-for-that will make that possible without writing custom JS.

Use props

Side note: Adam also spoke at CSS Day and presented a MEGA LIST of the ways CSS can enable highly adaptive, contextually relevant components. This slide deck is very well worth your time. Trust me.

Good to be aware: contrast themes 

When a change in background or box-shadow is used as a focus indicator instead of the default focus outline, a Contrast Theme will render it invisible. Instead of removing the outline with outline: none, use outline: 2px solid transparent.

You're probably checking light and dark mode when writing your CSS. But do you check contrast, too? Here's a quick explainer telling what to watch out for.

Be aware

HTML in canvas demos 

Fluid 3d interface with selected text.

HTML in canvas is still a long way off, but of course people are going wild with it already. I also wonder how useful this all will be, but hey... I'm always game for some eye candy.

Check the future

Random MDN – overscroll-behavior 

.messages {   height: 220px;   overflow: auto;   overscroll-behavior-y: contain; }

From the unlimited MDN knowledge archive...

Overscroll behavior is one of those CSS properties that aren't used enough. I'm using a Mac and way too often do I accidentally swipe the history, just because a horizontal scroller wasn't containing the scroll. Let's fix that!

Container

TIL recap – orientation in container size queries 

A interactive component showing an image frame and a handle telling to resize its container.

Did you know that container size queries can detect landscape and portrait ratios? Now you do!

Detect

New on the baseline 

Newly available: field-sizing: content; Widely Available: CSS nesting.

I've mentioned CSS field-sizing plenty of times here and with Firefox supporting it now with version 152, it's finally baseline newly available.

And it feels like yesterday, but native CSS nesting is now widely available. Time flies!

Three valuable projects to have a look at 

A new Tiny Helper 

With more and more throwaway tools being generated, I started to question Tiny Helper's usefulness. The project is also "under fire" with lots of useless vibe code submissions.

What do you think? Should we keep it? If 50 people reply and let me know that it's valuable, I'll keep going. Otherwise, I think it's time to "finish" this project.

Thought of the week 

Yep.

Paying for software isn't paying for a solution. It's paying for someone else to own a problem.

Did you learn something from this issue? 

❤️ If so, join 50 other Web Weekly supporters and give back with a small monthly donation on Patreon or GitHub Sponsors.

This is all, friends! 

Loved this email? Hated this email? I want to hear about it!

If you think something needs improvement or something sparked some joy, reply to this email because I want to know more!


And with that, take care of yourself - mentally, physically, and emotionally.

I'll see you next week! 👋

Join 6.5k+ developers and