有没有办法解决我的响应式网站上背景图片的这个小问题?

时间:2019-05-25 09:18:24

标签: javascript html css3

我用导航栏,文本,背景图像等创建了一个新的响应式网站。然后出现了问题。我的页脚下面有一个大白点。有没有办法更改代码,也有我的背景图片?该代码以HTML,CSS和几行JavaScript编写。

My Problem

我已经用以下代码尝试过了,但是没有用:

if self.head:
            while new.next: # We have to stop when after a node there is None.
                new = new.next
            new.next = node(data) # Now add the new data at the end.

我的代码: https://jsfiddle.net/q64g3ft7/2/

3 个答案:

答案 0 :(得分:0)

请为此类型的问题创建一个JSFiddle

答案 1 :(得分:0)

您能从您的网站给我发送截图吗,以便我知道问题出在哪里!

答案 2 :(得分:0)

enter image description here在您的nav1-1.css文件中,将以下内容添加到html,body,div,p,a,ul,li:

height: 100%;
overflow: hidden;

它看起来像这样:

    html,
    body,
    div,
    p,
    a,
    ul,
    li {
      margin: 0;
      padding: 0;
      border: 0;
      font: inherit;
      font-size: 100%;
      vertical-align: baseline;
      height: 100%;
      overflow: hidden;
}