You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note: It's not recommended to enable `nw`, `n`, `ne` resizing handles. Their behaviour may be unexpected.
513
514
515
+
## IE8 support
516
+
517
+
Support of IE8 is quite limited and is not a goal at this time. As far as IE8 doesn't support DOM Level 2 I cannot manipulate with
518
+
CSS stylesheet dynamically. As a workaround you can do following:
519
+
520
+
- Create `gridstack-ie8.css` for your configuration (sample for grid with cell height of 60px can be found [here](https://gist.github.com/troolee/6edfea5857f4cd73e6f1)).
521
+
- Include this CSS:
522
+
523
+
```html
524
+
<!--[if lt IE 9]>
525
+
<link rel="stylesheet" href="gridstack-ie8.css"/>
526
+
<![endif]-->
527
+
```
528
+
529
+
- You can use this python script to generate such kind of CSS:
0 commit comments