上图

接着HTML代码:

<div id="color">
<div id="red">红</div>
<div id="yellow">黄</div>
<div id="black">黑</div>
<div id="green">绿</div>
</div>
<a href="#red">红</a>
<a href="#yellow">黄</a>
<a href="#black">黑</a>
<a href="#green">绿</a>

css样式:

#color{
overflow:hidden;
}
div{
height:400px;
width:400px;
}
#red{
height:400px;
width:400px;
background-color:red;
}
#yellow{
height:400px;
width:400px;
background-color:yellow;
}
#black{
height:400px;
width:400px;
background-color:black;
}
#green{
height:400px;
width:400px;
background-color:green;
}

 

内容来源于网络如有侵权请私信删除
你还没有登录,请先登录注册
  • 还没有人评论,欢迎说说您的想法!