Upgrade to Pro — share decks privately, control downloads, hide ads and more …

TIL about XHTML + ab. CSS escapes + about SVG i...

TIL about XHTML + ab. CSS escapes + about SVG in JS

Gunnar Bittersmann

October 15, 2021
Tweet

More Decks by Gunnar Bittersmann

Other Decks in Programming

Transcript

  1. HTML 4.01 (SGML) text/html XHTML 1.0 (XML) text/html XHTML 1.0

    (XML) application/xhtml+xml XHTML 2.0 (XML) application/xhtml+xml
  2. HTML 4.01 (SGML) text/html XHTML 1.0 (XML) text/html XHTML 1.0

    (XML) application/xhtml+xml HTML5 (HTML syntax) text/html HTML5 (XML syntax) text/html XHTML5 (XML syntax) application/xhtml+xml
  3. HTML 4.01 (SGML) text/html XHTML 1.0 (XML) text/html XHTML 1.0

    (XML) application/xhtml+xml HTML (HTML syntax) text/html HTML (XML syntax) text/html XHTML (XML syntax) application/xhtml+xml polyglot
  4. <!DOCTYPE HTML PUBLIC "-!//W3C!//DTD HTML 4.01!//EN" "http:!//!!www.w3.org/TR/html4/strict.dtd"> <!DOCTYPE html PUBLIC

    "-!//W3C!//DTD XHTML 1.0 Strict!//EN" "http:!//!!www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <!DOCTYPE HTML PUBLIC "-!//W3C!//DTD HTML 4.01 Transitional!//EN" "http:!//!!www.w3.org/TR/html4/loose.dtd"> <!DOCTYPE HTML PUBLIC "-!//W3C!//DTD HTML 4.01 Frameset!//EN" "http:!//!!www.w3.org/TR/html4/frameset.dtd"> <!DOCTYPE html PUBLIC "-!//W3C!//DTD XHTML 1.0 Transitional!//EN" "http:!//!!www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!DOCTYPE html PUBLIC "-!//W3C!//DTD XHTML 1.0 Frameset!//EN" "http:!//!!www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
  5. A wizard is never late, nor is he early. He

    arrives precisely when he means to. width quirks width standards compliant A wizard is never late, nor is he early. He arrives precisely when he means to. h height CSS box model
  6. A wizard is never late, nor is he early. He

    arrives precisely when he means to. bp width pb quirks bp width pb standards compliant A wizard is never late, nor is he early. He arrives precisely when he means to. pb h bp bp height pb CSS box model
  7. box-sizing: content-box box-sizing: border-box bp width pb bp width pb

    pb h bp bp height pb CSS box model A wizard is never late, nor is he early. He arrives precisely when he means to. A wizard is never late, nor is he early. He arrives precisely when he means to.
  8. <!DOCTYPE HTML PUBLIC "-!//W3C!//DTD HTML 4.01!//EN" "http:!//!!www.w3.org/TR/html4/strict.dtd"> <!DOCTYPE html PUBLIC

    "-!//W3C!//DTD XHTML 1.0 Strict!//EN" "http:!//!!www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <!DOCTYPE HTML PUBLIC "-!//W3C!//DTD HTML 4.01 Transitional!//EN" "http:!//!!www.w3.org/TR/html4/loose.dtd"> <!DOCTYPE HTML PUBLIC "-!//W3C!//DTD HTML 4.01 Frameset!//EN" "http:!//!!www.w3.org/TR/html4/frameset.dtd"> <!DOCTYPE html PUBLIC "-!//W3C!//DTD XHTML 1.0 Transitional!//EN" "http:!//!!www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!DOCTYPE html PUBLIC "-!//W3C!//DTD XHTML 1.0 Frameset!//EN" "http:!//!!www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
  9. <!DOCTYPE html PUBLIC "-!//W3C!//DTD XHTML 1.1!//EN" "http:!//!!www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" [ <!ATTLIST html

    lang NMTOKEN #IMPLIED > ]> <html xmlns="http:!//!!www.w3.org/2000/xhtml" xml:lang="de" lang="de">
  10. <!DOCTYPE html [ <!ENTITY nnbsp "&#x202F;"> <!ENTITY SZlig "ẞ"> ]>

    <html xmlns="http:!//!!www.w3.org/2000/xhtml"> <head>…!</head> <body> <p> J.&nnbsp;R.&nnbsp;R.&nbsp;Tolkien: DER SCHMIED VON GRO&SZlig;HOLZINGEN !</p> !</body> !</html>