Can someone explain why my two divs are moving when I hover over them?
HTML
<div class="two">
<label class="one">
<input type="radio"> Sanjeev
</label>
</div>
<div class="two">
<label class="one">
<input type="radio"> Hari
</label>
</div>
CSS
.one{
border:1px solid red;
display:block;
opacity:0.5;
}
.two{
margin-bottom:5px;
}
.two:hover{
border:1px solid red;
}