Skip to content

Instantly share code, notes, and snippets.

@qzm
Created April 27, 2016 10:30
Show Gist options
  • Save qzm/61c66dcbb4d19092039ff1a457dedde4 to your computer and use it in GitHub Desktop.
Save qzm/61c66dcbb4d19092039ff1a457dedde4 to your computer and use it in GitHub Desktop.
tabs
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tab</title>
<style>
ul {
text-align: center;
width: auto;
}
li {
/* 去除间隔 */
margin-right: -4px;
display: inline-block;
width: 100px;
height: 50px;
background-color: #5f5f5f;
color: #eee;
list-style-type: none;
text-align: center;
line-height: 50px;
}
/* 点击效果 */
li.active {
color: #fff;
background-color: #4CAF50;
}
/* 左侧圆角 */
li:first-child {
-webkit-border-radius: 5px 0 0 0;
-moz-border-radius: 5px 0 0 0;
-ms-border-radius: 5px 0 0 0;
-o-border-radius: 5px 0 0 0;
border-radius: 5px 0 0 0;
}
/* 右侧圆角 */
li:last-child {
-webkit-border-radius: 0 5px 0 0;
-moz-border-radius: 0 5px 0 0;
-ms-border-radius: 0 5px 0 0;
-o-border-radius: 0 5px 0 0;
border-radius: 0 5px 0 0;
}
</style>
</head>
<body>
<ul>
<li>Tab 1</li>
<li class="active">Tab 2</li>
<li>Tab 3</li>
<li>Tab 4</li>
<li>Tab 5</li>
</ul>
</body>
</html>
@qzm
Copy link
Author

qzm commented Apr 27, 2016

2016-04-27 18 31 00

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment