Changes between Initial Version and Version 1 of Ticket #11265, comment 2
- Timestamp:
- Dec 6, 2013, 10:07:49 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11265, comment 2
initial v1 1 1 NOTE: Compatibility mode is something different that QM. You can turn it on in IE->Tools->Compatibility View Settings or using {{{<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />}}} 2 2 3 The problem here is that this is IE issue. Try below code on plain HTML5 page andwith compatibility mode turned on:3 The problem here is that this is IE issue. Try below code on plain HTML5 page with compatibility mode turned on: 4 4 {{{ 5 5 <div style="margin: 20px; border:1px solid black; width:500px;" contenteditable="true"> … … 13 13 This means there is nothing we can do and with is a "won't fix" issue. 14 14 15 NOTE: This seems to w irk with {{{<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />}}}. Perhaps you could use it asworkaround.15 NOTE: This seems to work with dispaly:none elements {{{<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />}}}. Perhaps you could use it as a workaround. 16 16 17 17