Есть вот input
<div class="box-item">
<div class="add_file">Добавить видео</div>
<input type="file" name="load_file">
</div>
Нужно чтоб при наведение на input[type="file"] эффект шел на .add_file
Сделал так но чет не работает:
input[type="file"]{
padding:10px 30px;
opacity: 0;
filter:alpha(opacity:0);
cursor: pointer;
position: relative;
z-index: 2;
}
.add_file{
z-index: 1;
position: absolute;
color: #08c;
cursor: pointer;
display: inline-block;
font-weight: 400;
letter-spacing: .5px;
text-transform: uppercase;
border: 1px solid #08c;
padding: 10px 30px;
background: #fff;
transition: all 0.2s;
}
input[type="file"] .add_file:hover {
background: #08c;
color: #fff;
}