Search Results

2
votes

TinyMCE - external toolbar position

The CSS selectors in the provided stylesheets are overriding the selectors that you're writing. What you need to do is either target the toolbar element with a selector of greater specificity: …
0
votes

auto adjust container <DIV> height to accomodate absolutely positioned child <DIV>s

You could give the .container div a bottom padding that totals the absolutely positioned childrens' heights. I'm not sure if that counts as precalculating the height, but at least you …
6
votes

HTML IE specific code

IE understands "conditional comments," which you can use to selectively show markup even to specific versions. Here's an introduction: …