2016-06-26 24 views
0

In diesem Beispiel gibt es eine Svg mit Position: absolut auf eine Tabelle (mit Position: relativ). Ich möchte, dass das Wort "html" von der ersten Zeile der Tabelle abgedeckt wird. In Firefox kann ich dies erreichen, indem ich die erste Zeile als Position deklariere: relative Anzeige mit dem Z-Index. Ich kann nicht verstehen, warum das in Chrome und Safari nicht funktioniert. Wie kann ich das gleiche Ergebnis auch in Chrome und Safari ottani?zIndex mit Position: relativ: funktioniert nicht Chrom und Safari

In Safari und Chrome: In Safari and Chrome

In Firefox: In Firefox

#codexpl th, #codexpl td{ 
 
    padding:0.8em; 
 
    border: 1px solid; 
 
} 
 
#codexpl th{ 
 
    background-color:#6699FF; 
 
    font-weight:bold; 
 
} 
 

 
#codexpl{ 
 
    position: relative; 
 
} 
 

 
#svg{ 
 
    position: absolute; 
 
    top: 0; 
 
    left: 0; 
 
    width: 55%; 
 
    z-index: 1; 
 
} 
 

 
tr:first-child{ 
 
    position: relative; 
 
    z-index: 2; 
 
}
<table id="codexpl"> 
 

 
    <tr> 
 
     <th>#</th> 
 
     <th>Columna</th> 
 
     <th>Relative</th> 
 
     <th>Isso</th> 
 
    </tr> 
 

 
    <tr> 
 
     <td>1</td> 
 
     <td>This</td> 
 
     <td>Column</td> 
 
     <td>Is</td> 
 
    </tr> 
 
    <tr> 
 
     <td>2</td> 
 
     <td>Coloumn</td> 
 
     <td>two</td> 
 
     <td>this</td> 
 
    </tr> 
 
    <tr> 
 
     <td>3</td> 
 
     <td>is</td> 
 
     <td>not equals</td> 
 
     <td>a</td> 
 
    </tr> 
 
    <tr> 
 
     <td>4</td> 
 
     <td>the</td> 
 
     <td>Column</td> 
 
     <td>real</td> 
 
    </tr> 
 
    <tr> 
 
     <td>5</td> 
 
     <td>first</td> 
 
     <td>One</td> 
 
     <td>Coloumn</td> 
 
    </tr> 
 

 
</table> 
 

 
<svg id="svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"> 
 
    <title>HTML5 Logo</title> 
 
    
 
    <polygon fill="#E44D26" points="107.644,470.877 74.633,100.62 437.367,100.62 404.321,470.819 255.778,512    "/> 
 
    <polygon fill="#F16529" points="256,480.523 376.03,447.246 404.27,130.894 256,130.894    "/> 
 
    <polygon fill="#EBEBEB" points="256,268.217 195.91,268.217 191.76,221.716 256,221.716 256,176.305 255.843,176.305 142.132,176.305 143.219,188.488 154.38,313.627 256,313.627"/> 
 
    <polygon fill="#EBEBEB" points="256,386.153 255.801,386.206 205.227,372.55 201.994,336.333 177.419,336.333 156.409,336.333 162.771,407.634 255.791,433.457 256,433.399"/> 
 
    <path d="M108.382,0h23.077v22.8h21.11V0h23.078v69.044H152.57v-23.12h-21.11v23.12h-23.077V0z"/> 
 
    <path d="M205.994,22.896h-20.316V0h63.72v22.896h-20.325v46.148h-23.078V22.896z"/> 
 
    <path d="M259.511,0h24.063l14.802,24.26L313.163,0h24.072v69.044h-22.982V34.822l-15.877,24.549h-0.397l-15.888-24.549v34.222h-22.58V0z"/> 
 
    <path d="M348.72,0h23.084v46.222h32.453v22.822H348.72V0z"/> 
 
    <polygon fill="#FFFFFF" points="255.843,268.217 255.843,313.627 311.761,313.627 306.49,372.521 255.843,386.191 255.843,433.435 348.937,407.634 349.62,399.962 360.291,280.411 361.399,268.217 349.162,268.217"/> 
 
    <polygon fill="#FFFFFF" points="255.843,176.305 255.843,204.509 255.843,221.605 255.843,221.716 365.385,221.716 365.385,221.716 365.531,221.716 366.442,211.509 368.511,188.488 369.597,176.305"/> 
 
<svg>

+0

Überrascht funktioniert es in jedem Browser um ehrlich zu sein. Zweifeln Sie finden einfache css einzige Lösung .... aber ich könnte falsch liegen. Tische waren schon immer skurril, wenn sie so etwas versuchen wollten. Vielleicht muss die oberste Zeile verstecken und es in einem anderen div/Tabelle oben oder etwas ähnliches – charlietfl

Antwort

1

Gerade diese

tr:first-child{ 
    position: relative; 
    z-index: 2; 
} 
ändernzu diesem

tr:first-child th{//be specific to th 
    position: relative; 
    z-index: 2; 
} 
+0

es funktioniert überall außer in der Druckvorschau von IE 11, wer weiß warum? – silviagreen

+0

worüber ich mir Sorgen mache ist, dass du position: absolute und position: relative benutzt ... probiere es aus und entferne deine Position absolut zu relativ, vielleicht wird es funktionieren. #svg { Position: relativ; oben: -250; links: 0; Breite: 55%; Z-Index: 1; } – Qaddura

+0

Lösung: meine Schuld, ein fehlender Überlauf: versteckt, sorry – silviagreen

Verwandte Themen