Answer the question
In order to leave comments, you need to log in
How to set the properties of the next element?
<style>
.panel{
border:1px solid #000;
}
</style>
<div class="body">
<div class="panel"></div>
<div class="panel"></div>
</div>
Answer the question
In order to leave comments, you need to log in
remembered=) .panel:last-child or .panel:nth-child or .panel + .panel
.panel {
border: 1px solid black;
}
.panel + .panel {
border-top-color: red;
}
<style>
.panel{
border:1px solid #000;
}
.custom {
border-top:0;
}
<div class="body">
<div class="panel"></div>
<div class="panel custom"></div>
</div>
</style>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question