Guest User

Untitled

a guest
Jun 25th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. @-moz-document url-prefix() {
  2. .selector {
  3. width:200px;
  4. }
  5. }
  6.  
  7. @media screen and (-webkit-min-device-pixel-ratio:0) {
  8. .selector {
  9. width:300px;
  10. }
  11. }
  12.  
  13. if (!!window.chrome == true) {
  14. //condition for chrome
  15. }
  16. else if (typeof InstallTrigger !== 'undefined') {
  17. //condition for firefox
  18. }
  19. else if (/*@cc_on!@*/false == true) {
  20. //condition for safari
  21. }
  22. else if (!!window.opera || navigator.userAgent.indexOf('Opera') >= 0) {
  23. //condition for opera
  24. }
  25. else if (Object.prototype.toString.call(window.HTMLElement).indexOf('Constructor') > 0) {
  26. //condition fo IE
  27. }
  28.  
  29. <script type="text/javascript">
  30. var browser=navigator.appName;
  31. if browser == "Microsoft Internet Explorer"
  32. {
  33. document.write("<link type="text/css" rel="stylesheet" href="IE.css">");
  34. }
  35. else if browser == "Firefox"
  36. {
  37. document.write("<link type="text/css" rel="stylesheet" href="Firefox.css">");
  38. }
  39. else
  40. {
  41. document.write("<link type="text/css" rel="stylesheet" href="generic.css">");
  42. }
  43. </script>
  44.  
  45. <!--[if IE]><link href="/ie.css" rel="stylesheet" type="text/css" /><![endif]-->
Add Comment
Please, Sign In to add comment