java程序员-http://www.it-ebooks.info/

年轻的我,脚踩大地,仰望天空,路还很长....

博客园 首页 新随笔 联系 订阅 管理

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>

<style type="text/css">
* {
margin: 0;
padding: 0;
}

ul li {
float: left;
list-style: none;
width: 100px;
height: 40px;
background-color: blue;
line-height: 40px;
text-align: center;
color: white;
font-size: 14px;
font-weight:bold;
-webkit-transform: skew(-20deg);
-moz-transform: skew(-20deg);
-o-transform: skew(-20deg);
-ms-transform: skew(-20deg);
transform: skew(-20deg);
}

ul li:HOVER {
background-color: gray;
cursor: pointer;
}

</style>
</head>
<body>

<ul>
<li>权限管理</li>
<li>报警记录</li>
<li>实时迁移</li>
<li>申请接入</li>
</ul>

</body>
</html>

 

posted on 2016-06-24 16:41  gstsyyb  阅读(167)  评论(0编辑  收藏  举报