Tag: css
Some time ago, if developers wanted to layout the page, they generally had
two options. Either use some hacky solution made of many floating elements
or use the HTML ` element. Both approaches had their fair share of
problems. These times are fortunately gone and today we can use... It is possible target specific elements in a DOM via CSS
using selectors ``css
h2 {
/ property: value; /
}
` It is also possible to
use CSS selector in JS DOM `js
const elements = document.querySelector("h2")
` With the advent of a JAMstack it is also possible to target Markd...