我正在使用下面的代码来查看产品 ID。为每个列表使用背景图像。我想把图像放在前面,把文字放在后面。
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
.addcart
{
}
.addcart ul{
list-style:none;
}
.addcart li{
list-style:none;
background-image:url(round.png);
background-repeat: no-repeat;
height:45px;
top:0px;
}
.addcart h3
{
font-size:24px;
font-weight:bold;
padding:10px 0px 40px 10px;
color:#F00;
z-index:400px;
position:relative;
}
</style>
</head>
<body>
<ul class="addcart">
<li><span><h3>96</h3></span></li>
<li><h3>97</h3></li>
</ul>
</body>
</html>