Search
Exhausted Man, A Game For All Of Us Right Now
7.10.2021
I’m tired. You, reading this right now, are probably tired. Tired is a constant state of being for most of us these days thanks to, you know, everything. Now, you can play a game that’s all about being tired.Read more
The Game That Gets Easier The More Tired You Are
7.10.2021
This week’s Steam Next Fest, during which hundreds of in-development PC games released demos, features a game that really seems to care about how you’re doing just now. Please, Touch the Artwork is a puzzle adventure in which you’re allowed to prod at the paintings in an exhibition, and it picks...
New World Patch Adds Important Message: Don't Be A Dick
6.10.2021
One of the main features of Amazon’s New World is an ongoing struggle between three massive player-run factions for control of Aeternum Island. This is causing some players to behave badly, from harassing members of other factions to loudly shouting obscenities in local voice chat. Today’s update...
Help Me, I Can't Stop Playing Cookie Clicker
4.10.2021
It was September, 2021 when it started. Kotaku editor-in-chief Patricia Hernandez asked me to handle a post, a story about a clicker game on Steam getting patched to allow cheating. What a fun, novel notion, certainly worthy of a story. No problems there. That was how my problems with Cookie...
CSS accent-color
4.10.2021
For better or worse, form fields have been somewhat difficult to style with CSS. Form control display is dependent upon device, operating system, and browser, so you can imagine the difficulty in making styling easy. We have slowly been given some controls over form control display, as evidenced...
XDEFI CEO wants to disrupt MetaMask’s domination of browser wallets
30.9.2021
Emile Dubié, CEO of XDEFI, is building a new browser wallet with Web 3 capabilities. XDEFI currently has nine blockchain integrations
New World Players Face Massive Queues, Wait Times On Overloaded Servers
28.9.2021
Amazon’s new massively multiplayer online role-playing game New World opened its doors earlier today, reaching a peak of over 700,000 players. That said, not even Jeff Bezos’ piggy bank has kept the MMO’s grand debut from being plagued with the usual launch day woes, including ridiculous wait times...
iOS Browser Choice
28.9.2021
Just last week I got one of those really?! 🤨 faces when this fact came up in conversation amongst smart and engaged fellow web developers: there is no browser choice on iOS. It’s all Safari. You can download apps that …
The post iOS Browser Choice appeared first on CSS-Tricks....
Viral Steam Game Patched To Aid Cheating
9.9.2021
I’m still playing Cookie Clicker instead of writing about Cookie Clicker because I need a good screenshot. That’s what I’m telling myself. It’s a convincing argument—I’m going to use it if Patricia starts asking where this post is. What would really help would be some sort of auto-clicker cheat...
If I work really hard on my Open Graph images, people will share my blog posts.
2.9.2021
Zach did that thing where each of his blog posts has a special URL with the design of social image card that is screenshat by a headless browser (like Puppeteer) and used as a true meta Open Graph image, meaning …
The post If I work really hard on my Open Graph images, people will share...
Detecting Media Query Support in CSS and JavaScript
23.8.2021
You can’t just do @media (prefers-reduced-data: no-preference) alone because, as Kilian Valkhof says:
[…] that would be false if either there was no support (since the browser wouldn’t understand the media query) or if it was supported but the
…
The post...
Native JavaScript Routing?
23.8.2021
We can update the URL in JavaScript. We’ve got these APIs:
// Adds to browser history
history.pushState({}, "About Page", "/about");
// Doesn't
history.replaceState({}, "About Page", "/about");
JavaScript is also capable of replacing any content in the DOM....
Wanna see a whiter white?
11.8.2021
Heck of a CSS trick here from Dongsung Kim.
There are hidden HDR videos playing at the corners of this page. When a HDR-capable browser encounters one, it switches to HDR mode. For some reason, CSS backdrop-filter + brightness >100%
…
The post Wanna see a whiter white? appeared first...
View Source (on Mobile)
10.8.2021
Have you ever wished you could see the HTML source of a web page while on a mobile browser, which generally doesn’t offer that feature? If you have a desktop machine around, there are ways, but what I mean …
The post View Source (on Mobile) appeared first on CSS-Tricks. You can support...
View Source (on Mobile)
10.8.2021
Have you ever wished you could see the HTML source of a web page while on a mobile browser, which generally doesn’t offer that feature? If you have a desktop machine around, there are ways, but what I mean …
The post View Source (on Mobile) appeared first on CSS-Tricks. You can support...
SVG Gobbler
6.8.2021
Great little project from Ross Moody:
SVG Gobbler is a browser extension that finds the vector content on the page you’re viewing and gives you the option to download, optimize, copy, view the code, or export it as an image.
…
The post SVG Gobbler appeared first on CSS-Tricks....
CSS Modules (The Native Ones)
2.8.2021
They are actually called “CSS Module Scripts” and are a native browser feature, as opposed to the popular open-source project that essentially does scoped styles by creating unique class name identifiers in both HTML and CSS.
Native CSS Modules are …
The post CSS Modules (The...
Safari 15 Opinions
28.7.2021
It was interesting that when Safari 15 was dropping at this last WWDC, in my circles at least, I mostly heard enthusiasm. Like the colors-in-the-browser-controls stuff was a neat trick and fun to play with. And there were other …
The post Safari 15 Opinions appeared first on CSS-Tricks....
CSS Logical Properties and Values
27.7.2021
Now that cross-browser support is at a tipping point, it’s a good time to take a look at logical properties and values. If you’re creating a website in multiple languages, logical properties and values are incredibly useful. Even if you’re …
The post CSS Logical Properties...
Meta Theme Color and Trickery
13.7.2021
Starting with Version 15, Safari supports the theme-color <meta> tag both on macOS and iOS. That’s exciting news because now the first desktop browser supports this <meta> tag and it also supports the media attribute and the prefers-color-scheme media feature.…
The post Meta...