My application allows to use divs. But it seems it's not possible to edit the content within a div with IE. It works fine with Firefox, Opera, Safari, ... but not with IE. On IE the user only sees the resize cursor, but cannot click into a paragraph for instance.
Example:
<div id="title">
<h3 style="text-align: center;">Overview - last.fm Software Utilities (Windows, Linux, OS X)</h3>
</div>
I would like to edit the h3 object with IE. How to do this? What have I overseen?
Example:
<div id="title">
<h3 style="text-align: center;">Overview - last.fm Software Utilities (Windows, Linux, OS X)</h3>
</div>
I would like to edit the h3 object with IE. How to do this? What have I overseen?

Re: IE and divs
Re: IE and divs
/* design-3 - cascading style sheet (css) */ body { background-color: #DFDBC3; } #title { /* height: 40px; */ border-bottom: 1px dotted #000000; color: maroon; margin-left: 1%; margin-right: 1%; }Re: IE and divs
http://cksource.com/forums/viewtopic.php?f=11&t=17479&p=44912#p44912
Re: IE and divs