I have Two div like :
<div class="circle">
<div class="circle">
and I have a style:
.circle{
width="100";
height="200";
}
In this case I the css apply to first div only is this possible?
use .circle:first-child and you solve you problem
.circle:first-child {
height: 100px;
width: 100px;
background: red;
}
<div class="circle">First child</div>
<div class="circle">Second child</div>