<style>
body{
??background:?#ebebeb;
}
.nav{
??width:560px;
??height:?50px;
??font:bold?0/50px?Arial;
??text-align:center;
??margin:40px?auto?0;
??????background:?#f65f57;
??/*制作圓*/
??border-radius:10px;
??????????/*制作導(dǎo)航立體風(fēng)格*/
??????????box-shadow:0?5px?0;
}
.nav?a{
??display:?inline-block;
??-webkit-transition:?all?0.2s?ease-in;
??-moz-transition:?all?0.2s?ease-in;
??-o-transition:?all?0.2s?ease-in;
??-ms-transition:?all?0.2s?ease-in;
??transition:?all?0.2s?ease-in;
}
.nav?a:hover{
??-webkit-transform:rotate(10deg);
??-moz-transform:rotate(10deg);
??-o-transform:rotate(10deg);
??-ms-transform:rotate(10deg);
??transform:rotate(10deg);
}
.nav?li{
??position:relative;
??display:inline-block;
??padding:0?16px;
??font-size:?13px;
??text-shadow:1px?2px?4px?rgba(0,0,0,.5);
??list-style:?none?outside?none;
}
/*使用偽元素制作導(dǎo)航列表項分隔線*/
li:after{content:"|";position:absolute;right:0;}
????????/*刪除第一項和最后一項導(dǎo)航分隔線*/
li:last-child:after{display:none;}
.nav?a,
.nav?a:hover{
??color:#fff;
??text-decoration:?none;
}
</style>