Skip to main content

HTML is more complicated than you think

Posted

A couple of recent articles got me thinking. The first was Why is CSS frustrating by Robin Rendle at CSS-Tricks which references a Jeremy Keith post from a couple of years ago.

CSS is pretty easy to pick up. Maybe it’s because of this that it has gained the reputation of being simple. It is simple in the sense of “not complex”, but that doesn’t mean it’s easy. Mistaking “simple” for “easy” will only lead to heartache.

The other was a roundup by Dave Rupert – HTML: The Inaccessible Parts. Here he starts with:

by just using a suitable HTML element instead of a generic div or span we can have a big Accessibility impact

He then goes on to list the problems with some of that more ‘suitable’ HTML:

  • browser compatibility, both legacy and current
  • issues with how assistive technologies (screen readers like NVDA, voice controllers like Dragon) interpret, don’t interpret or misinterpret certain markup
  • usability issues (e.g. block links)

The CSS and HTML learning curves are similar

What makes CSS frustrating is that it’s easy to pick up and make default browser styling much more interesting, but you can quickly run into unexpected behaviour, complexity and browser compatibility issues.

It’s a similar story with HTML – it’s super simple to start writing content, marking it up with HTML and seeing how things look in your browser. It’s even more exciting when you apply that basic CSS that you’ve written.

Unfortunately HTML, like CSS, can present unexpected behaviour, complexity and browser compatibility issues.

As with colour contrast, display: none; and restyling lists in CSS, HTML can do damage. Beyond the basics of wrapping a paragraph in <p> tags, an unordered list in a <ul> containing <li>s, etc., there are a whole host of things to consider:

  • proper heading levels (the document outline)
  • when and how to use landmarks like <header>, <main>, <article>, <aside>, <footer> and so on
  • what’s the difference between <article> and <section>
  • semantics, like when is a <dl> more appropriate than a <table>?
  • the accessibility implications of using one element over another
  • valid use of certain elements inside others
  • ARIA labels, roles, etc.
  • browser compatibility with certain elements and attributes (<datalist> sounds like a great idea but comes with some accessibility drawbacks)
  • assistive tech like Dragon or NVDA compatibility with certain elements and attributes (type="number", for example)
  • the user experience of certain elements – just because we can use an element doesn’t mean we should (e.g. <select multiple> when something like <input type="checkbox" /> probably provides better usability)
  • Giving extra information for search engines and other machines via microformats and microdata
  • Social media cards with Open Graph and Twitter Cards
  • responsive design (<meta name="viewport" content="initial-scale=1, width=device-width" />, <picture> and srcset="")
  • catering for new devices, like iPhones X and above with their ‘notches’ (viewport-fit=cover)
  • catering for new browsers like Apple Watch

That list is by no means definitive, but covers a lot of the big things you’ll encounter when writing your markup. It’s not just the half-baked features that Dave Rupert mentions, but the slew of extra considerations that make HTML a right old bugger to master.

Accessibility in your inbox

I send an accessibility-centric newsletter on the last day of every month, containing:

  • A roundup of the articles I’ve posted
  • A hot pick from my archives
  • Some interesting posts from around the web

I don’t collect any data on when, where or if people open the emails I send them. Your email will only be used to send you newsletters and will never be passed on. You can unsubscribe at any time.

More posts

Here are a couple more posts for you to enjoy. If that’s not enough, have a look at the full list.

  1. Images as the first thing in a button or link

    If the text of an interactive element like a button or link is preceded with an accessible image, we’ve probably got an accessibility problem.

  2. Alt text for CSS generated content

    There’s an interesting feature in Safari 17.4 that allows content added with CSS to have ‘alt’ text. I’m not sure how I feel about this.