求教一个html程序 为什么总是在dw里面显示不出来,真心谢谢了 求指教错误
发布网友
发布时间:2023-03-16 08:01
我来回答
共4个回答
热心网友
时间:2023-10-29 02:38
楼上两位已经说了主要问题了,我再补充一点你html的错误,你的<meta http-equiv="Content-Type" content="text/html; charset=gb2312">这句应该放在<head></head>里面。写代码要仔细哦(*^__^*) 嘻嘻……
热心网友
时间:2023-10-29 02:39
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style type="test/css">
#menu {
background-color: #00FF99;
background-image: url(02.gif);
background-repeat: repeat;
float: none;
height: 55px;
width: 450px;
}
#menu span {
font-family: "宋体";
font-size: 18px;
background-color: #FFFFFF;
background-image: url(%E4%B8%B0%E5%AF%8C.gif);
background-repeat: no-repeat;
height: 25px;
width: 82px;
}
</style>
</head>
<body>
<div id="menu">
<span>网站首页</span>
<span>关于我们</span>
<span>成功案例</span>
<span>合作伙伴</span>
</div>
</body>
</html>
热心网友
时间:2023-10-29 02:39
#menu span 要设置display为block,最好还要设置一下float为left
热心网友
时间:2023-10-29 02:40
有效果图么?