css按钮悬浮文字提示的竖形导航条效果代码
代码语言:html
所属分类:菜单导航
代码描述:css按钮悬浮文字提示的竖形导航条效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");
*, *:after, *:before {
box-sizing: border-box;
}
body {
font-family: "Inter", sans-serif;
line-height: 1.5;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding-top: 5vh;
padding-bottom: 5vh;
background-color: #f2f5f7;
}
ul {
list-style: none;
margin: 0;
padding: 0;
margin-left: auto;
margin-right: auto;
background-color: #05043e;
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 0.75rem;
border-radius: 10px;
box-shadow: 0 10px 50px 0 rgba(5, 4, 62, 0.25);
}
li:nth-child(6) {
margin-top: 5rem;
padding-to.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0