我正在使用此CSS
.logo-holder img {
height: 350%;
width: auto;
position: relative;
display: block!important;
z-index: 9999999999;
visibility: visible;
margin: -40px
}
但是,当我检查手机时,徽标的一半在左侧。
添加此
css
@media only screen and (max-width:767px){
.cth-mobile .logo-holder{
height: 40px;
top: 20px;
width: 61px;
}
.logo-holder img {
height: auto;
width: 100%;
max-width: 100%;
}
}