Is there a way to make tag CSS3 working without DOCTYPE? You may think, why the hell I do need this!
In BSP page, default tags (html,title) are provided by SAP, and we cannot change them. They do not include DOCTYPE and we cannot add DOCTYPE tag since there is a restriction of using this tag. Bur I must be able to use CSS3 in my BSP application. Any suggestions are appreciated.
Thanks in advance.
I strongly suggest doing anything you can to include a
DOCTYPEin your markup.If you really can't change the source code of the application you're working on, you might be able to prepend the
DOCTYPEusing your web server (for example, in IIS I believe you can add to outgoing responses), so that might be something to look into.