Advertisement
Guest User

ButtonCss

a guest
Jun 30th, 2011
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.19 KB | None | 0 0
  1.  
  2. html, body {
  3.      width:100%;
  4.      height:100%;
  5.      overflow:hidden;
  6.      padding:0;
  7.      margin:0;
  8. }
  9.  
  10. #container {
  11.      position:relative;
  12.      width:100%;
  13.      height:100%;
  14.      overflow:auto;
  15.      z-index:100;
  16. }
  17.  
  18. #smallBanner  object{
  19.      display:block;
  20.      position:absolute;
  21.      bottom:0;
  22.      left:0;
  23.      z-index:200;
  24. }
  25.  
  26. #bigBanner object{
  27.      position:absolute;
  28.      bottom:0;
  29.      left:0;
  30.      display:none;
  31.      z-index:300
  32. }
  33.  
  34. #closeButton
  35. {
  36.     position:absolute;
  37.     right: 10px;
  38.     bottom:55px;
  39.     z-index:400;
  40.     background: none;
  41.     display:none;
  42. }
  43.  
  44.  
  45. //---------------------------------------------------- NEW FILE IE 8
  46.  
  47. #smallBanner  object{
  48.      display:block;
  49.      position:static;
  50. }
  51.  
  52. #bigBanner object{
  53.      position:static;
  54.      display:block;
  55. }
  56.  
  57. #smallBanner embed{
  58. position: absolute;
  59. bottom:0;
  60. left:0;
  61. display:block;
  62. z-index:200;
  63. }
  64.  
  65. #bigBanner embed{  
  66. position: absolute;
  67. bottom:0;
  68. left:0;
  69. display:none;
  70. z-index:300;
  71. }
  72.  
  73. //---------------------------------------------------NEW FILE IE 6 7
  74.  
  75. #smallBanner embed{
  76. position: absolute;
  77. bottom:0;
  78. left:0;
  79. display:block;
  80. z-index:200;
  81. }
  82.  
  83. #bigBanner embed{  
  84. position: absolute;
  85. bottom:0;
  86. left:0;
  87. display:none;
  88. z-index:300;
  89. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement