Мой HTML выглядит следующим образом:
<div id="top">
<div id="first">
</div>
<div id="second">
</div>
<div id="third">
</div>
</div>
Мой CSS выглядит следующим образом:
#first{
position: absolute;
left:100px;
top:100px;
height:100px;
width:100px;
background-color:red;
}
#second{
position: absolute;
left:200px;
top:100px;
height:100px;
width:100px;
background-color:green;
}
#third{
position: absolute;
left:100px;
top:200px;
height:100px;
width:200px;
background-color:yellow;
}
#first:hover{
border-color:"000";
border-width:5px;
border-style:solid;
}
Также, пожалуйста, посмотрите на эту скрипку.
Я не понимаю, почему граница не применяется к первому div.