Chinaunix首页 | 论坛 | 博客
  • 博客访问: 387415
  • 博文数量: 95
  • 博客积分: 3020
  • 博客等级: 中校
  • 技术积分: 865
  • 用 户 组: 普通用户
  • 注册时间: 2008-05-20 10:40
文章分类

全部博文(95)

文章存档

2011年(3)

2010年(8)

2009年(24)

2008年(60)

我的朋友

分类: 系统运维

2009-10-17 10:54:42

//index.html部分

<body>
<div class="01"></div>
<div class="02"></div>
</body>


 

.01, .02 {

   width:8px;
   height:8px;

   background:url(images/2009.jpg) no-repeat;}
.01{
   background-position:0 0;
 }
 .02{
  background-position:-121px 0px;
 }

2009.jpg图片显示为:

         

   

index.html浏览显示为(纵向):


 

.01, .02 {

   width:8px;
   height:8px;

   background:url(images/2009.jpg) no-repeat; }
 .01{
  float:left;
  margin-right:50px;
  background-position:0 0;
  display:inline;
 }
 .02{
  float:left;
  background-position:-121px 0px;

 }

index.html浏览显示为(横向):

  

阅读(487) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~