my_div.innerHTML += 'новый текст';
var test = document.getElementById('test'),
input = document.getElementById('inp');
input.addEventListener('change', function () {
var val = this.value;
this.value = '';
test.innerHTML += val; // <-- вот тут добавляем текст к нашему полю
});
.pic {
position: relative;
float: left;
width: 250px;
height: 150px;
margin: 0 10px 10px 0;
background-color: #ccc;
background-position: 50% 50%;
background-size: cover;
}
.pic-text {
position: absolute;
background: rgba(0, 0, 0, 0.5);
padding: 5px;
width: 100%;
box-sizing: border-box;
color: #fff;
}
.pic-text.top {
top: 0;
}
.pic-text.bottom {
bottom: 0;
}