Search
I Saw Two Mega Menus Today…
2.2.2021
One was the footer of an (older) U.S. Government website. The other was the navigation for AWS services from the AWS Console.
The post I Saw Two Mega Menus Today… appeared first on CSS-Tricks.
You can support CSS-Tricks by being an MVP Supporter
Ford's Incredible And Barely Remembered 1982 Concept Car Had Pre-GPS SatNav And The First Integrated Video Game Console
2.2.2021
Intellectually, we all know that the advancements and technological marvels that we all take for granted in modern cars — big center-stack color touchscreen displays, integrated computers, global navigation via a network of satellites, and even video game systems built right into the car — didn’t...
Console War Takes A Dark Turn As Microsoft Turns Poor Canadian Into Xbox Controller
15.1.2021
You maniacs! Damn you. God damn you all to hell. Read more
Postal Worker Caught Stealing "PlayStation And Nintendo" Console Deliveries
14.1.2021
A USPS supervisor in Middletown, Connecticut has been sentenced to nine months of “home confinement” and a $20,000 fine after being caught stealing stuff like iPhones and “PlayStation and Nintendo gaming devices”.Read more
CD Projekt Red Apologizes For Cyberpunk 2077 Bugs, Says It's Avoiding Crunch On 'All Future Projects'
13.1.2021
In a video on Twitter and Q&A posted on the company’s website, CD Projekt Red co-founder Marcin Iwiński apologized for the state Cyberpunk 2077 launched in on consoles, shared a road map for updates to the game coming in the future, and said the studio would deliver these fixes “without...
Assassin’s Creed Valhalla Gets New Abilities But Only If You Disconnect Your Console From The Internet
6.1.2021
A few weeks back, Assassin’s Creed Valhalla players spotted a handful of new abilities in the game’s elaborate skill tree. Then, those abilities disappeared.Read more
Herní konzole od KFC je skutečná. Umí i ohřát jídlo
29.12.2020
Fastfoodový řetězec to už poněkolikáté zkouší s virální reklamou, a i tentokrát se mu daří strhnout pozornost. Chystá se totiž nabízet podivnou herní konzoli s přihrádkou na ohřev jídla. V praxi je to v podstatě jen na míru vyrobený herní počítač
Cyberpunk 2077 Execs Say They 'Ignored' Signals That The Console Versions They Hyped Were In Rough Shape
16.12.2020
It’s clear by now that Cyberpunk 2077 is a bit of a disaster, especially on consoles. During a recent conference call with CD Projekt Group’s management board, executives said they knew the game was busted before its December 10 launch.Read more
SNK Is Making A New Game Console, It Seems
15.12.2020
At one time, SNK made what was considered the Roll Royce of video game consoles. As a kid, I remember thinking that the Neo-Geo was the most amazing game hardware I had ever seen. And now earlier today, the company announced that it making a new game machine.Read more
Four Generations Of Xbox Console Can Play The Same Game Together
15.12.2020
When we think of backwards compatibility we tend to only think of a game from an older system running on its replacement. But as this video shows, in the right circumstances, a console released in 2001 can play the same game at the same time as one released in 2020, as well as the two consoles...
GameStop's Last-Minute Console Rush Puts Workers At Risk
14.12.2020
A new allocation of PlayStation 5 and Xbox Series X / S bundles brought crowds of hopeful customers to physical GameStop locations over the weekend, according to a report by Bloomberg and corroboration by a Kotaku source. Staffing shortages and the threat of the ongoing covid-19 pandemic in...
Square Enix’s Project Athia Is Console Exclusive On PS5 For ‘At Least 24 Months’
8.12.2020
Project Athia, the next game from the team behind Final Fantasy XV, will be console-exclusive to the PlayStation 5 for “at least 24 months,” a new Sony demo reel of upcoming games revealed.Read more
Amplify, Amplified
2.12.2020
First, quickly: AWS Amplify has a new Admin UI. Amplify always had a CLI that helps you build projects by setting up stuff like auth, storage, and APIs. That’s super useful, but now, you can do those things with the new Admin UI. And more, like model your data (!!), right from a local...
Wednesday's Best Deals: New M1 MacBooks, Xbox Game Pass Ultimate, Christmas Tree Skirts, Switch Pro Controller Bundle, Too Faced Lipstick, and More
2.12.2020
Apple’s new MacBooks and Xbox Game Pass Ultimate lead Wednesday’s best deals.Read more
console.log({ myVariable });
19.11.2020
I think this might be my most popular tweet of all time, but I’m not sure how to verify that these days. I’ll restate this neat little trick here because blogging is cool and fun.
I used to do this a lot while debugging JavaScript:
console.log("myVariable: ", myVariable);
But now I...
Netlify Edge Handlers
13.10.2020
Some very cool news from Netlify: Edge Handlers are in Early Access (request it here). I think these couple of lines of code do a great job in explaining what an Edge Handler is:
export function onRequest(event) {
console.log(`Incoming request for ${event.request.url}`);
...
Practical Use Cases for JavaScript’s closest() Method
12.8.2020
Have you ever had the problem of finding the parent of a DOM node in JavaScript, but aren’t sure how many levels you have to traverse up to get to it? Let’s look at this HTML for instance:
<div data-id="123"<buttonClick me</button</div
That’s pretty straightforward, right? Say...
Offscreen Text for Copy & Paste
15.5.2020
The relationship between HTML and CSS is special: mixing content via HTML with presentation from CSS to make an awesome presentation. Sometimes, however, you need to employ CSS tricks solely to enhance functionality. This could be one of those cases. When browsing through the Firefox DevTools...
A Guide to Console Commands
21.2.2020
The developer’s debugging console has been available in one form or another in web browsers for many years. Starting out as a means for errors to be reported to the developer, its capabilities have increased in many ways; such as automatically logging information like network requests, network...
Listen to your web pages
16.2.2020
A clever idea from Tom Hicks combining MutationObserver (which can "observe" changes to elements like when their attributes, text, or children change) and the Web Audio API for creating sounds. Plop this code into the console on a page where you'd like to listen to essentially any DOM change...