初学CSS一个问题?_html/css_WEB-ITnose
Head Line
The Internet Society's mission is to achieve a world in which everyone everywhere is connected to an open and universally accessible Internet. Since its inception in 1992, ISOC has been at the forefront of global Internet education by bringing essential information and training to people throughout the world.The Internet Society's mission is to achieve a world in which everyone everywhere is connected to an open and universally accessible Internet. Since its inception in 1992, ISOC has been at the forefront of global Internet education by bringing essential information and training to people throughout the world.
zen2.css
body {
background-image:url(bg-grad.gif)
/*background-repeat:repeat-x;*/
}
h1 {
/*background-color:#678; */
color:white;
text-align:center;
}
.p1 {
width:200px;
float:left;
margin:10px;
margin-left:0;
padding:10px;
border:3px gray double;
background:#9BD;
height:200px;
}
.p2 {
font-size:20px;
line-height:1.8;
background-color:white;
}
.firstLetter {
font-size:3em;
float:left;
}
img {
border:1px dashed gray;
margin:10px,10px,10px,0;
padding:5px;
float:left;
}
问题是这样,body里的背景图片如果不加background-repeat属性就能显示出来,如果加了用IE或FF死活就没图了。书上的例子是内嵌的CSS代码跟偶外部引用式的不一样,但用书上光盘里的例子程序打开又是正常的。百思不得其解?
回复讨论(解决方案)
可能是这个背景图片高度太小,repeat-x时看不出来罢了
你这样子让我很惆怅啊。
建议你把那些没用的样式先删除掉。然后一点一点的测试,不要让别的样式影响了。这样的话 你应该能很快的找到错误
LZ在写css的时候首先要注意你css中引用背景图片的路径时候正确,再看看你那个背景图会不会就横着一条件,repeat-x这样不仔细看的话会感觉没有图片的
repeat属性要随着图片尺寸来用的
background-image:url(bg-grad.gif) ;
是不是外部引用和内部的相对路径问题?不显示可能是这个原因。
body {
background-image:url(bg-grad.gif)
/*background-repeat:repeat-x;*/
}
少了一个结束符分号 ;
body 样式代码应该是这样的:
body {
background-image:url(bg-grad.gif);
/*background-repeat:repeat-x;*/
}
果然很纠结
纠结,背景样式不要拆分出来写,聚集到一起,如:
background:url(**.jpg) no-repeat left top;
初学者表示看不懂啊
body {
background:url(bg-grad.gif)
background-repeat:repeat-x;
}
改成这样看看,行不?
上一篇: php curl怎么以get方式提交
推荐阅读
-
windows下关于sublime text2,HTML/CSS/JS Prettify插件使用路径问题处理
-
使用HTML5和CSS3制作一个模态框的示例
-
HTML5 CSS3实现一个精美VCD包装盒个性幻灯片案例
-
【实战】如何通过html+css+mysql+php来快速的制作动态网页(以制作一个博客网站为列)
-
html5\CSS3有哪些新特性、移除了哪些元素?如何处理HTML5新标签的浏览器兼容问题?如何区分HTML和HTML5?
-
关于老式浏览器兼容HTML5和CSS3的问题
-
Html中Css页面跳转问题
-
初学html,任务1:一个简单html页面,要求:内容页面装一篇文章 用html来分段
-
Python学习全家桶,Python初学者十一个热门问题
-
初学python遇到的一个小问题