我对编程非常陌生,并且可能正在使用一种完全旧的方式来对我的网站进行编程,但到目前为止,它有时令人沮丧,但对我有用。现在我有 2 个我似乎无法解决的问题 首先:背景图片。我一直在使用 Chrome 进行检查,但是当我在 IE 中打开页面时,我的背景没有显示出来。我检查了语法(一些网站似乎表明我需要添加空格),但我看不出哪里有问题。我还尝试将图像保存为 png 而不是 jpg,但没有奏效。
这是我的代码的样子:
body {
background-image: url('images/backrings.jpg'), url('images/backrings2.jpg');
background-position: left top, right top;
background-repeat: no-repeat;
}
第二:我的页脚导航栏周围出现蓝色边框 - 我不知道为什么并且已经尝试了我能想到的一切来摆脱它。
代码如下所示:
#footermenu ul {
background-color: #fff;
margin: 0;
padding: 0;
list-style-type: none;
list-style-image: none;
text-align: right;
border: none 0px;
}
#footermenu ul li {
display: inline;
}
#footermenu ul li a {
font-family:verdana;
font-style:normal;
font-size:12px;
text-decoration:none;
margin: 0;
padding: 5px 20px 5px 20px;
color: #fff;
background-color:83AFC7;
}
<div id="footermenu">
<ul>
<li class="first"><a href="index.html">home</a></li>
<li><a href="about.html">about</a></li>
<li><a href="gallery.html">gallery</a></li>
<li><a href="contact.html">contact</a></li>
</ul>
</div>
任何帮助将不胜感激 - 谢谢!