CSS 图象映射

2019-04-15 15:04发布


图象映射可以 使开发人员 将土的一些区域顶为 热点 连接

下面是我 操作 CSS 图象映射 的一个简单列子

#pic
{
width:324px;
 height:245px;
 position:relative;


}

#pic ul{
margin:0;
padding:0;
list-style:none;

}

#pic a{
    position:absolute;
    width:44px;
    height:30px;
   
    text-indent:-100000em
   

   
    /*left: 78px;
    top: 162px;*/

}
#pic .rich a{
top:94px;
left:99px;

}

#pic .andy a{
top:128px;
left:64px;

}

#pic .jeremy a{
top:163px;
left:78px;

}





#pic a:hover{
border:1px solid #fff;


}

html: