<html>
<head>
<style type="text/css">
a{
display:block;
text-decoration:none;
color:#FF0000;
font-family:"宋体";
font-size:12px;
background-image:url(http://shanghai.kijiji.cn/cg_img/home_r_bg2.gif);
background-repeat:no-repeat;
height:30;
width:100;
text-align:center;
line-height:35px;
background-position:bottom; 这什么意思?用了之后颜色会变?
}
</style>
</head>
<body>
<a href="" > 我们的唉 </a>
</body>
</html> background-position:bottom;//设置背景图片的位置,有水平和垂直两种,bottom表示在底部background-position还可以是数值,例如background-position:100px 10px表示背景图左距离为100px,上距离为10px,最可恶的是background-position的参数并不是像padding:x1 x2 x3 x4那样从上到下顺时针的,以前老是不知哪个是代表background-position的上下左右。

