CSS mit YAML IE6

  • CSS mit YAML IE6

    Hallo Leute,

    ich hoffe es kennen sich ein paar Leute mit den CSS-Framework YAML aus. Ich habe ein Problem, was mir schon länger die Zeit raubt. Es geht um die Darstellung im Internet Explorer 6. Im YAML Forum habe ich leider keine Antwort bekommen :wacko:
    Nun aber zu dem Problem was ich gelöst haben muss:

    [Blockierte Grafik: http://www.muetzeswelt.de/fehler_yaml.gif]


    Die Aufteilung 3-1 Spalten mit 82 %. Der grüne DIV-Conterner soll bis zur schwarzen Line ran gehen. Im FF oder IE 7 sieht alles gut aus. Habe das Problem etwas eingekreist, und zwar die Spalte col3, mit den Inhalt Container col3_content lässt die kleine Lücke. Ich habe auch schon versucht width 100 % aber dann verschwindet die ganze Spalt.

    Jeder Tipp könnte Helfen!!

    Gruß
    Stephan


    HTML

    Quellcode

    1. <div id="col3">
    2. <div id="col3_content" class="clearfix"> <a id="content" name="content"></a>
    3. <!-- skiplink anchor: Content -->
    4. <div id="hmenu" > ddd </div>
    5. </div>
    6. <div id="ie_clearing">&nbsp;</div>
    7. <!-- End: IE Column Clearing -->
    8. </div>
    9. <!-- end: #col3 -->
    10. </div>
    Alles anzeigen

    CSS zum DIV-Container

    Quellcode

    1. #hmenu {
    2. z-index:7;
    3. float:left;
    4. position:relative;
    5. top:0px;
    6. width: 100%;
    7. height:auto;
    8. padding: 0px;
    9. right: 0px;
    10. margin: 0px;
    11. color: #000000;
    12. font-family: "Times New Roman", Times, serif;
    13. background-color: #009900;
    14. }
    Alles anzeigen


    Aufteilung von CSS

    Quellcode

    1. #col1 {
    2. width: 82%;
    3. float:right;
    4. background-repeat: repeat-x;
    5. background-color: #999999;
    6. background-image: url(../../media/main_background.png);
    7. }
    8. #col1_content {
    9. padding-top: 10px;
    10. padding-right: 10px;
    11. padding-bottom: 10px;
    12. padding-left: 10px;
    13. }
    14. /* right column | Rechte Spalte */
    15. #col2, #col2_content { display:none; }
    16. #col3 {
    17. margin-right: 82%;
    18. padding:0px;
    19. margin-left: 0;
    20. background-image: url(../../media/navigation_background_seite.png);
    21. background-repeat: repeat-x;
    22. border-top-style: none;
    23. border-right-style: solid;
    24. border-bottom-style: none;
    25. border-left-style: none;
    26. border-right-color: #000000;
    27. border-right-width: 1px;
    28. }
    29. #col3_content {
    30. text-align: left;
    31. padding-top: 0px;
    32. padding-right: 0px;
    33. padding-bottom: 0px;
    34. padding-left: 0px;
    35. }
    36. }
    Alles anzeigen