css-code nicht cross-brwoser fähig!

Diese Seite verwendet Cookies. Durch die Nutzung unserer Seite erklären Sie sich damit einverstanden, dass wir Cookies setzen. Weitere Informationen

  • css-code nicht cross-brwoser fähig!

    Hallo Leute,

    leider wird mein css code nicht bei jedem Browser richtig angezeigt. -> teeworlds-database.de/blog

    Quellcode

    1. @charset "utf-8";
    2. /* Default */
    3. * {
    4. margin: 0;
    5. padding: 0;
    6. border: 0;
    7. }
    8. span {
    9. padding: 6px;
    10. }
    11. ul, ol {
    12. list-style: none;
    13. }
    14. a {
    15. opacity: 1.0;
    16. }
    17. /* CSS Document */
    18. body, td, th {
    19. font-family: Arial, Helvetica, sans-serif;
    20. font-size: 12px;
    21. background: #A16E36;
    22. color: #543E24;
    23. overflow:scroll;
    24. }
    25. .left {
    26. float: left;
    27. }
    28. .right {
    29. float: right;
    30. }
    31. .wrap {
    32. border: 3px solid;
    33. -webkit-border-radius: 7px;
    34. -moz-border-radius: 7px;
    35. border-radius: 7px;
    36. background: #835A26;
    37. width: 80%;
    38. margin: auto;
    39. border-color: #543e24;
    40. margin-top: 15px;
    41. }
    42. .wrap div {
    43. padding: 5px;
    44. }
    45. .wrap h1 {
    46. border-bottom: 2px solid;
    47. }
    48. .wrap h1 a {
    49. text-decoration: none;
    50. }
    51. h2 {
    52. font-size: 26px;
    53. padding: 6px 0px;
    54. margin: 0px;
    55. padding-bottom: 0px;
    56. }
    57. h1 {
    58. font-size: 45px;
    59. padding: 6px 0px;
    60. margin: 0px;
    61. padding-bottom: 0px;
    62. }
    63. a:link, a:visited{
    64. color: #543e24;
    65. text-decoration: none;
    66. }
    67. a:hover {
    68. text-decoration: underline;
    69. font-weight: bold;
    70. }
    71. a:active {
    72. text-decoration: none;
    73. font-weight: bold;
    74. }
    75. section {
    76. display: block;
    77. }
    78. #content {
    79. }
    80. header {
    81. height: 64px;
    82. background-image: url(../img/header.png);
    83. background-repeat: repeat-x;
    84. background-position: center;
    85. }
    86. nav {
    87. border: 3px solid;
    88. -webkit-border-radius: 7px;
    89. -moz-border-radius: 7px;
    90. border-radius: 7px;
    91. background: #835A26;
    92. width: 80%;
    93. margin: auto;
    94. border-color: #543e24;
    95. margin-top: 5px;
    96. height: 40px;
    97. }
    98. nav li {
    99. float: left;
    100. padding: 8px;
    101. border-right-style: solid;
    102. border-width: 3px;
    103. }
    104. nav li a {
    105. font-size: 20px;
    106. font-weight: bold;
    107. padding: 4px;
    108. border: 1px solid;
    109. -webkit-border-radius: 7px;
    110. -moz-border-radius: 7px;
    111. border-radius: 7px;
    112. border-color: transparent;
    113. background-color: rgba(0,0,0,0.1);
    114. }
    115. nav li a:hover {
    116. background-color: rgba(0,0,0,0.2);
    117. border: 1px solid;
    118. -webkit-border-radius: 7px;
    119. -moz-border-radius: 7px;
    120. border-radius: 7px;
    121. border-color: transparent;
    122. padding: 4px;
    123. }
    124. footer {
    125. border: 3px solid;
    126. -webkit-border-radius: 7px;
    127. -moz-border-radius: 7px;
    128. border-radius: 7px;
    129. background: #835A26;
    130. width: 80%;
    131. margin: auto;
    132. border-color: #543e24;
    133. margin-top: 15px;
    134. }
    135. footer div {
    136. padding: 5px;
    137. }
    138. .box {
    139. border: 3px solid;
    140. -webkit-border-radius: 7px;
    141. -moz-border-radius: 7px;
    142. border-radius: 7px;
    143. background: #835A26;
    144. margin: auto;
    145. border-color: #543e24;
    146. margin-top: 5px;
    147. }
    148. .box div {
    149. padding: 5px;
    150. }
    151. .box div h2 {
    152. padding: 0px;
    153. border-bottom: 2px solid;
    154. }
    155. .box .footer div{
    156. padding: 5px;
    157. border-top: 2px solid;
    158. padding-bottom: 0px;
    159. }
    160. .middle {
    161. width: 80%;
    162. margin: auto;
    163. padding-bottom: 0px;
    164. padding-top: 20px;
    165. }
    166. form {
    167. width: 75%;
    168. /*padding: 3px;*/
    169. }
    170. form div {
    171. padding: 10px;
    172. /* border-bottom: 1px dashed #333; */
    173. }
    174. form lable {
    175. display: block;
    176. font-family: Georgia, serif;
    177. font-style: italic;
    178. width: 130px;
    179. }
    180. input[type=text], textarea {
    181. outline: none;
    182. border: 3px solid #543e24;
    183. padding: 3px;
    184. border-radius: 5px;
    185. background-color: rgba(0,0,0,0.1);
    186. }
    187. input:focus, textarea:focus {
    188. border: 3px solid #543e24;
    189. }
    190. input[type=submit] {
    191. margin: 5px;
    192. background-color: rgba(0,0,0,0.1);
    193. border: 3px solid #543e24;
    194. border-radius: 5px;
    195. outline: none;
    196. padding: 3px;
    197. /* margin-left: 230px;*/
    198. }
    199. input[type=submit]:hover{
    200. background-color: rgba(0,0,0,0.2);
    201. }
    202. input[type=submit]:active {
    203. background-color: rgba(0,0,0,0.3);
    204. }
    205. textarea { max-width: 75%; max-height: 304px; }
    Alles anzeigen