I ran into an issue while dynamically generating div elements where certain style properties were not working properly in Firefox.
$(".contacttiles").eq(i).append("<div id=mm"+i+"' class=exp style='font-weight:bold;font-size:14px;color:#FFFFFF;margin-left:3px;width:120px;height:120px;position:relative;word-wrap: break-word;left:0;top:0'>"+position+"</div>");
In particular, the font-size and font-weight settings were not being applied in Firefox, although they worked fine in Chrome. After researching online, I discovered that font-weight is indeed supported in Firefox. Using Firebug to manually add the font-weight and size properties made them display correctly in Firefox. However, attempting to include these properties within the inline style attribute in the source code did not yield the same result. Could this discrepancy be due to the dynamic nature of creating the divs or is there another workaround specifically for Firefox?