问答详情
源自:3-14 编程练习

请大师指点下,我这个设置怎么背景图像无效呢

<!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>3.10新闻中心制作评测题</title>
<style type="text/css">

/*在此定义相关CSS样式*/
.topList {
    width: 400px;
    margin:0 auto;
    border:1px solid #E8E8E8;
    }
 .topList ul  {
 	padding: 5px;
	margin:  5px;}

.topList ul li em{
	display: inline-block;
	width: 20px;
	height: 16px;
	line-height: 16px;/*居中*/
	text-align: center;
	font-style: normal;/*正常显示字体*/
	color: #333;
	background:url("http://img.mukewang.com/53cf0fa20001d3dc00200032.jpg")
	background-position:0 16px;
}
.top em{
	background:url("http://img.mukewang.com/53cf0fa20001d3dc00200032.jpg")
	background-position:16px 0;
 }
.topList ul li {

	display: inline-block;
	list-style-type: none;
	font-size: 16px;
	line-height: 30px;
	
}

.topList ul li p{
	display: inline;
}
.topList ul li p a{
	text-decoration: none;
	color: #000;
}
.topList ul li p a:hover,a:active{
	background-color: #00c;
	color: #fff;
}
.topList ul li p a:link,a:visited{
	background-color: #fff;
	color: #000;
}

</style>
</head>

<body>
<div class="topList">
<ul>
<li class="top"><em>01</em>
<p><a href="http://www.imooc.com/" >【慕客访谈用户篇】“有为屌丝”在路上</a></p>
</li>
<li class="top"><em>02</em>
<p><a href="http://www.imooc.com/">【有奖活动】给父亲的三行书信</a></p>
</li>
<li class="top"><em>03</em>
<p><a href="http://www.imooc.com/">《程序猿,请晒出你的童年》活动获奖公告</a></p>
</li>
<li><em>04</em>
<p><a href="http://www.imooc.com/">【慕课访谈】破茧成蝶——美女程序员的蜕变史</a></p>
</li>
<li><em>05</em>
<p><a href="http://www.imooc.com/">【获奖公告】追“球”巅峰,争当“预言帝”</a></p>
</li>
<li><em>06</em>
<p><a href="http://www.imooc.com/">【问卷调查】慕课网用户学习情况大调查</a></p>
</li>
</ul>
</div>
</body>


提问者:resharpe 2016-06-25 14:07

个回答

  • 淡淡的05361
    2016-09-14 15:48:17

    background后面少了个;号

  • pgf
    2016-06-25 15:26:53

    background:url("http://img.mukewang.com/53cf0fa20001d3dc00200032.jpg")

    no-repeat  0  -16px;

    }

    .top em{

        background:url("http://img.mukewang.com/53cf0fa20001d3dc00200032.jpg")

    no-repeat  0  0px;