FAQ |
Kalender |
2017-04-29, 15:59 | #1 | |||
|
||||
Medlem
|
Hej!
Har html som ser ut så här: Kod:
<div class="container"> <div> <h3>Första rubriken</h3> <p>Första stycket.</p> <h3>Andra rubriken</h3> <p>Andra stycket.</p> <h3>Tredje rubriken</h3> <p>Tredje stycket.</p> </div> </div> I stilmallen har jag: Kod:
.container div h3:nth-child(1), .container div h3:nth-child(2), .container div p:nth-child(1), .container div p:nth-child(2) { display:none; } Vad gör jag för fel? Mvh Danne |
|||
Svara med citat |
2017-04-29, 16:13 | #2 | |||
|
||||
Klarade millennium-buggen
|
Prova
Kod:
.container h3:nth-of-type(1), .container h3:nth-of-type(2), .container p:nth-of-type(1), .container p:nth-of-type(2) { display:none; } |
|||
Svara med citat |
2017-04-29, 16:17 | #3 | |||
|
||||
Medlem
|
Citat:
|
|||
Svara med citat |
Svara |
|
|