我有一个外部css文件,我写下这样的类 当我在我的网页中包含这个类时 背景图像不是已经整齐,甚至背景属性都没有包含在文件中。每件事都很好但是图片网址的路径改变了就好了
http:localhost:1234//http://www.myimg.com/img.jpg
我如何解决这个问题
enter code here
.myclass
{
background:url('http://www.myimg.com/img.jpg');
border: 0 none;
color: #FFFFFF;
cursor: pointer;
display: block;
font-weight: bold;
height: 60px;
margin-left: -30px;
text-decoration: none;
width: 265px !important;
}
答案 0 :(得分:0)
试试这个
background-image:url(http://www.myimg.com/img.jpg);
答案 1 :(得分:0)
确保您已正确引用外部CSS文件,将其放在< HEAD>标记:
<link href="../FolderName/CSSNAME.css" rel="stylesheet" />