Diagram fit to window height in IE

Hi,

I have given the height of bpmn modeller to be 100%, but it doesn work. I have tried by

body { height:100%; }

(or)

#canvas { height:100%; } 

but still it does’n provide a flexible height. It works only if i give a fixed height as

#canvas { height:700px; }

but this scenario will not work with all screen size.

Please suggest.

Hi,

You can do something like this:


    html, body {
      height: 100%
    }
    #canvas {
      height: 100%
    }

Check this thread for more info.

Thanks,
Vladimir