Is there a simple conditional statement, css command, html, jquery, javascript or simple PHP dynamic way of detecting the current browser?
To do this with CSS only.
You can target Firefox with this 'hack':
@-moz-document url-prefix() {...}
And Chrome & Safari together like this:
@media screen and (-webkit-min-device-pixel-ratio:0) {...}
But not necessarily recommended...