/ Gists / Ceníky - boxy - zvětšení
On gists

Ceníky - boxy - zvětšení

CSS CSS trick

style.css Raw #

div  {

width: 100px;
height: 200px;
background: gray;
float: left;
border: 1px solid white;
color: gray;  
 
}

div:hover
{
    
    background-color: red;
    box-shadow: 0 0 10px #EEEEEE;
    margin: -10px -10px -10px -10px;
    padding: 10px;
    position: relative;
    color: white;
    
    
}

boxy.html Raw #

<div>text</div>
<div>text</div>
<div>text</div>