- *{
- margin: 0;
- padding: 0;
- }
- ul{
- overflow: hidden;
- /*注意父级元素塌陷,详情见博客*/
- }
- ul li{
- width: 100px;
- height: 30px;
- float: left;
- border: 1px solid #000;
- list-style: none;
- border-right: none;
- text-align: center;
- line-height: 30px;
- cursor: pointer;
- }
- ul li:last-child{
- border-right: 1px solid #000000;
- }
- .box{
- position: relative;
- }
- .box div{
- width: 304px;
- height: 300px;
- position: absolute;
- display: none;
- }
- .box div:first-child{
- background-color: red;
- }
- .box div:nth-child(2){
- background-color: blue;
- }
- .box div:last-child{
- background-color: yellow;
- }
- .box .show{
- display: block;
- }
- .box .hide{
- display: none;
- }
- .click{
- background-color: #ccc;
- }