css – 离子全屏背景图片

前端之家收集整理的这篇文章主要介绍了css – 离子全屏背景图片前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是Ionic框架的新手,我正试图用全屏幕背景图像启动应用程序:

我没有设法删除教程中显示的状态栏.但是如何添加全屏图像?当我将它添加到style.css它没有反应:

html,body{
  background-image: black;
}

解决方法

在你的css中,尝试:
.scroll-content {
    background: url(image) [add image position info here];

    [add any more properties here]

  }

这将设置完整内容区域的背景.

原文链接:https://www.f2er.com/css/217244.html

猜你在找的CSS相关文章