css()
Currently, css() upgrades all instances of _ to -.
This makes it impossible to create a css variable of --_foo. css(**{"--_foo": "bar"}) will get transformed to ---foo:bar;.
Tag Attributes
Similarly, you can not create an attribute that contains _. Ex: div({"data-foo_bar": "baz"}) returns <div data-foo-bar="baz"></div>