style.css 591 Bytes
Newer Older
Jose Baez committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
.container{
    margin: 50px auto;
    width: 605px;
    height: 605px;
    background-color: blanchedalmond;
    padding: 2px;
    border-style: solid
    
}
.caja{
    border-style: solid
}

.uno{
    position: absolute;
}
.dos{
    position: absolute;
    margin: 100px 0px 100px 100px;
}
.tres{
    position: absolute;
    margin: 200px 0px 200px 200px;
}
.cuatro{
    position: absolute;
    margin: 300px 0px 300px 300px;
}

.cinco{
    position: absolute;
    margin: 400px 0px 400px 400px;
}

.caja:hover ~ div{ 
    visibility: hidden;
}

.caja:hover {
    border:5px solid white;
}