Tabs - Problem mit dem Rand

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

  • Tabs - Problem mit dem Rand

    Hallo zusammen,

    ich möchte gerne vom ersten Tab Button die Ecke oben links abrunden. Klappt auch soweit alles. Nur der Rand wird unterbrochen.

    Kann mir da jemand helfen?



    Quellcode

    1. ul.tabs {
    2. margin: 0;
    3. padding: 0;
    4. float: left;
    5. list-style: none;
    6. height: 32px;
    7. border-bottom: 1px solid #999;
    8. border-left: 1px solid #999;
    9. width: 100%;
    10. -moz-border-radius-topleft: 5px;
    11. -khtml-border-radius-topleft: 5px;
    12. -webkit-border-top-left-radius: 5px;
    13. -moz-border-radius-topleft: 5px;
    14. }
    15. ul.tabs li {
    16. float: left;
    17. margin: 0;
    18. padding: 0;
    19. height: 31px;
    20. line-height: 31px;
    21. border: 1px solid #999;
    22. border-left: none;
    23. margin-bottom: -1px;
    24. background: #e0e0e0;
    25. overflow: hidden;
    26. position: relative;
    27. }
    28. ul.tabs li a {
    29. text-decoration: none;
    30. color: #000;
    31. display: block;
    32. font-size: 1.2em;
    33. padding: 0 7px;
    34. border: 1px solid #fff;
    35. outline: none;
    36. font-size:12px;
    37. }
    38. ul.tabs li a:hover {
    39. background: #ccc;
    40. }
    41. ul.tabs li.active, html ul.tabs li.active a:hover {
    42. background: #fff;
    43. border-bottom: 1px solid #fff;
    44. }
    45. .tab_container {
    46. border: 1px solid #999;
    47. border-top: none;
    48. clear: both;
    49. float: left;
    50. width: 100%;
    51. background: #fff;
    52. -moz-border-radius-bottomright: 5px;
    53. -khtml-border-radius-bottomright: 5px;
    54. -webkit-border-bottom-right-radius: 5px;
    55. -moz-border-radius-bottomleft: 5px;
    56. -khtml-border-radius-bottomleft: 5px;
    57. -webkit-border-bottom-left-radius: 5px;
    58. }
    59. .tab_content {
    60. padding: 5px;
    61. font-size: 1.0em;
    62. }
    63. .tab_content h2 {
    64. font-weight: normal;
    65. padding-bottom: 10px;
    66. border-bottom: 1px dashed #ddd;
    67. font-size: 1.8em;
    68. }
    69. .tab_content h3 a{
    70. color: #254588;
    71. }
    72. /* Tabs First*/
    73. li.tabFirst {
    74. -moz-border-radius-topleft: 5px;
    75. -khtml-border-radius-topleft: 5px;
    76. -webkit-border-top-left-radius: 5px;
    77. -moz-border-radius-topleft: 5px;
    78. }
    79. li.tabFirst a {
    80. -moz-border-radius-topleft: 5px;
    81. -khtml-border-radius-topleft: 5px;
    82. }
    83. li.tabFirst a:hover {
    84. -moz-border-radius-topleft: 5px;
    85. -khtml-border-radius-topleft: 5px;
    86. }
    87. li.tabFirst a:active {
    88. -moz-border-radius-topleft: 5px;
    89. -khtml-border-radius-topleft: 5px;
    90. }
    Alles anzeigen