I wonder if it is possible to just overwrite the styles used by the browser to render an XML file. I would like to force it to load with the exactly same colors and font in all browsers.
Right now, I have downloaded and mofified the DefaultSS.xsl file of IE<9 (which is suppose to be located in res://msxml.dll/DEFAULTSS.xsl
) in order to use it as the template for my XML file.
I haven't been able to find any similar .xsl of modern versions of IE...
Combining this .xls
file with the .xml
by using PHP I was able to style and format in my own way the XML, but I'm having some troubles with the XSL syntax and some problems have appeared. (such as showing the empty tags <phone></phone>
instead of just <phone />
without possibility to expand it)
That's why I was wondering if there isn't a more simple way to do it by just overwriting the CSS styles rather than having to use another .xls
file as a template.