Hallo.
Ich habe ein Problem mit diesem Element.
Wenn ich das erste <details>-Element öffne ändert sich der Pfeil des 2. <details>-Element als sei es ebenfalls geöffnet, obwohl dies nicht der Fall ist.
Ich hoffe ihr könnt mir helfen :)
Ich habe ein Problem mit diesem Element.
HTML:
<details>
<summary>Mehr... </summary>
<fieldset>
<legend>xyz</legend>
Anzahl:
<input type="number" name="anz_es" min="0" max="100" id="anz">
<br>
<ol>
<li>
<fieldset>
Bezeichnung:
<input type="text" name="sonst_be_bez" id="bez">
<br>
Entfernung:
<input type="text" name="sonst_be_entfernung" id="maße-text">
Maße:
<input type="text" name="sonst_be_hoehe" id="maße-text">
/
<input type="text" name="sonst_be_breite" id="maße-text">
Vorstand:
<input type="text" name="sonst_be_vorstand" id="maße-text">
Nuss:
<select name="nuss" id="maße-dropdown">
<option>8</option>
<option>9</option>
<option>10</option>
</select>
<br>
Ausrichtung:
<select name="ausrichtung">
<option>links</option>
<option>rechts</option>
</select>
Farbe:
<select name="farbe" id="katalog_bez">
<option>F1</option>
<option>F2</option>
<option>Edelstahl</option>
<option>Weiß</option>
<option>Braun</option>
<option>Messingpoliert</option>
<option>Messingtitan</option>
</select>
Sicherheitsstufe:
<select name="sicherheitsstufe" id="">
<option>x</option>
<option>y</option>
</select>
<details>
<summary>Nur bei XYZ</summary>
Griff:
<select name="sicherheitsstufe" id="">
<option>a</option>
<option>b</option>
<option>c</option>
<option>d</option>
</select>
</details>
</fieldset>
</li>
</ol>
</fieldset>
</details>
Code:
summary::-webkit-details-marker {
display: none
}
summary:before {
margin-left: 5px;
content: url(img/pfeil_grün2.png);
}
details[open] summary:before {
margin-left: 5px;
content: url(img/pfeil_blau2.png);
}
Wenn ich das erste <details>-Element öffne ändert sich der Pfeil des 2. <details>-Element als sei es ebenfalls geöffnet, obwohl dies nicht der Fall ist.
Ich hoffe ihr könnt mir helfen :)