Closed shamrin closed 7 years ago
Copy-pasting ui-demo example (and base.css file) into HTML5 web page doesn't work:
base.css
The page above is in html5 "standards mode":
<!doctype html> <html>…
While eve-starter pages are missing the doctype ("quirks mode"):
<html>…
I don't know all the differences between the modes. (Modern web pages usually have doctypes.) However, Chrome points to one problem - missing px unit:
px
I would suggest adding the doctype and px, where necessary.
(http://play.witheve.com/ is also missing the doctype.)
Copy-pasting ui-demo example (and
base.css
file) into HTML5 web page doesn't work:The page above is in html5 "standards mode":
While eve-starter pages are missing the doctype ("quirks mode"):
I don't know all the differences between the modes. (Modern web pages usually have doctypes.) However, Chrome points to one problem - missing
px
unit:I would suggest adding the doctype and
px
, where necessary.