我的选框在移动设备中不起作用,而在台式机中起作用。如果你能帮我的话那就太好了。谢谢
@media only screen and (max-width: 100px){
p{
display: none;
}
}
.welcome{
font-size: 400%;
}
<div class="row">
<h1 class="welcome" style="color: #B9FE00;"><marquee behavior="scroll" direction="left" >
Our Service</marquee></h1>
</div>
发布于 2017-07-14 14:08:53
试试这个:
.welcome{
font-size: 400%;
}
<div class="row">
<marquee behavior="scroll" direction="left" >
<h1 class="welcome" style="color: #B9FE00;">Our Service</h1> </marquee>
</div>
https://stackoverflow.com/questions/45095631
复制相似问题