Angular Signals Code Lab CSS Requires "No-Quirks" Mode
The sample application for "Getting Started with Angular Signals" is designed to run on the StackBlitz cloud-based development environment. Getting it up and running properly on my local machine (after solving installation and compilation errors) took more effort than I had expected. I wouldn't call the experience enjoyable, but it was certainly an educational trip through all the infrastructure underlying an Angular app. Now I have all the functional components up and running, I turn my attention to the visual appearance of the app. The layout only seems to work for certain window sizes and not others. I saw a chance for me to practice my CSS layout debugging skills, but what it also taught me was "HTML quirks mode".
The sample app was styled to resemble a small hand-held device in the vein of the original Nintendo Game Boy: a monochrome screen up top and a keyboard on the bottom. (On second thought, maybe it's supposed to be a Blackberry.) This app didn't have audio effects, but there's a little fake speaker grill in the lower right for a visual finish. The green "enclosure" of this handheld device is the <body>
tag of the page, styled with border-radius for its rounded corners and box-shadow to hint at 3D shape.
When things go wrong, the screen and keyboard spills over the right edge of the body. Each of which had CSS specifying a height
of 47%
and an almost-square aspect-ratio
of 10/9
. The width, then, would be a function of those two values. The fact that they become too wide and spill over the right edge means they have "too much" height for the specified aspect ratio.

Working my way up the component tree, I found the source of "too much" height was the body
tag, which has CSS specifying a width
(clamped within a range) and an aspect-ratio
of 10/17. The height, then, should be a function of those two values. When things go wrong, the width seems to be clamped to maximum of specified range as expected, but the body is too tall. Something has taken precedence over aspect-ratio:10/17
but that's where I got stuck: I couldn't figure out what the CSS layout system had decided was more important than maintaining aspect ratio.
After failing to find an explanation on my own, I turned to the StackBlitz example which worked correctly. Since I've learned the online StackBlitz example isn't exactly the same as the GitHub repository, the first thing I did is to compare CSS. They seemed to match minus the syntax errors I had to fix locally, so that's not it. I had a hypothesis that StackBlitz has something in their IDE page hierarchy and that's why it worked in the preview pane. But clicking "Open in new tab" to run the app independent of the rest of StackBlitz IDE HTML still looks fine. Inspecting the object tree and associated stylesheets side-by-side, I saw that my local copy seems to have duplicated styles. But since that just meant one copy completely overrides the other identical copy, it wouldn't be the explanation.
The next difference I noticed between StackBlitz and local copy is the HTML document type declaration at the top of index.html
.
<!DOCTYPE html>
This is absent from project source code, but StackBlitz added it to the root when it opened the app in a new tab. I doubted it had anything to do with my problem because it isn't a CSS declaration. But in the interest of eliminating differences between them, I added <!DOCTYPE html>
to the top of my index.html
.

I was amazed to find that was the key. CSS layout now respects aspect-ratio
and constrains height
of the body
, which kept screen and keyboard from spilling over. But... why does the HTML document type declaration affect CSS behavior? A web search eventually led me to the answer: backwards compatibility or "Quirks Mode". By default, browsers emulate behavior of older browsers. What are those non-standards-compliant behaviors? That is a deep dark rabbit hole I intend to avoid as much as I can. But it's clear one or more quirks affected aspect-ratio
used in this sample app. Having the HTML document type declaration at the top of my HTML activates the "no-quirks" mode that intends to strictly adhere to modern HTML and CSS standards, and now layout works as intended.
The moral of today's story: Remember to put <!DOCTYPE html>
at the top of my index.html
for every web app project. If things go wrong, at least the mistake is likely my own fault. Without the tag, there are intentional weirdness because some old browser got things wrong years ago and I don't want that to mess me up. (Again.)
Right now, I have a hard enough time getting CSS to do my bidding for normal things. Long term, I want to become familiar enough with CSS to make it do not just functional but also fun decorative things.
My code changes are made in my fork of the code lab repository in branch signals-get-started
.