Skip to content

Instantly share code, notes, and snippets.

@getmonyinfo
Last active February 2, 2020 03:24
Show Gist options
  • Save getmonyinfo/05ff45757f913845025c5f763dabaf62 to your computer and use it in GitHub Desktop.
Save getmonyinfo/05ff45757f913845025c5f763dabaf62 to your computer and use it in GitHub Desktop.
demo
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
}
.header {
width: 600px;
height: 50px;
background-color: #4d79ff;
margin: 30px auto;
}
.list{
overflow: hidden;
line-height: 50px;
}
ul>li{
list-style: none;
float: left;
width: 33.3%;
text-align: center;
color: #ffffff;
}
</style>
</head>
<body>
<div class="header">
<ul class="list">
<li class="header-item">个税计算器</li>
<li class="header-item">五险一金计算器</li>
<li class="header-item">税后工资计算</li>
</ul>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment