我的跑马灯在台式机上无法在移动设备上工作。
如果您能帮助我,那将是很棒的...
谢谢



@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>

最佳答案

尝试这个:



.welcome{
    font-size: 400%;
}

<div class="row">
  <marquee behavior="scroll"    direction="left" >
    <h1 class="welcome" style="color: #B9FE00;">Our Service</h1>       </marquee>
</div>

关于css - 字幕:无法在移动设备上使用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45095631/

10-12 00:00