Hocam tam olarak ne yapacaksınız bilmiyorum ama ben denedim çalıştı :/
class 'ı etkileyen başka bir .css kodu olabilir mi acaba, herhangi bir sayfada.
<div class="ucuncu">
<span class="h10">ucuncu</span>
<div class="bgym">
bgym
</div>
<span class="h10">alt sira</span>
</div>
.ucuncu {
background:#eee;
margin:100px auto;
padding:50px;
}
span.h10 {
display:block;
height:20px;
background:#ddd;
}
.ucuncu .bgym{
position:relative;
height:20px;
background:#aaa;
bottom:20px;
margin-bottom:10px;
}
@media screen and (max-width:768px){
.ucuncu .bgym{
bottom:40px;
margin-bottom:20px;
}
}
@media screen and (max-width:500px){
.ucuncu .bgym{
bottom:60px;
margin-bottom:40px;
}
}