witheve / eve-starter

Start here if you're new to Eve.
http://witheve.com
Apache License 2.0
30 stars 20 forks source link

Copying examples into HTML5 pages doesn't work #4

Closed shamrin closed 7 years ago

shamrin commented 7 years ago

Copy-pasting ui-demo example (and base.css file) into HTML5 web page doesn't work:

screen shot 2017-04-14 at 00 31 16

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:

screen shot 2017-04-14 at 00 41 30

I would suggest adding the doctype and px, where necessary.

shamrin commented 7 years ago

(http://play.witheve.com/ is also missing the doctype.)