I have a graphic plugin that inserts a canvas and a <table> legend into its contents. Width is not specified in this table plugin, and in my CSS, the width for the tables inside this container was inserted into my plugin.
So, the new div inherits table{ width: 100%} from CSS and makes it wrong.
I tried using width: initial; , looks good in Chrome, but IE doesn't like to check browser compatibility
I admit changing / forcing inline CSS into the script / plugin, as it should work in any environment.
What is the best solution here?
css cross-browser internet-explorer width
Rikard Dec 29 '13 at 7:38 2013-12-29 07:38
source share