Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Erik on Oct 16, 2008 06:10
open dhtmlx forum
fullscreen init with DOCTYPE XHTML Strict in IE.7

Hello,

Fullscreen init isn't working with <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

But only in IE.7..

Is this an know problem?
Answer posted by Support on Oct 21, 2008 07:23
Hello,

Add the following style:

html, head {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0px;
}
Answer posted by Erik on Oct 23, 2008 02:30
Thanks, it works.