css布局粉色波纹背景带导航条的单页效果代码
代码语言:html
所属分类:布局界面
代码描述:css布局粉色波纹背景带导航条的单页效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
body {
background-color: #F69899;
font-family: "arcon";
overflow: hidden;
}
body a {
color: inherit;
text-decoration: none;
transition: color 0.25s cubic-bezier(0.64, 0.57, 0.67, 1.53);
}
body .underbackground {
background-color: #FAFAFA;
position: absolute;
top: 0px;
left: 0px;
right: 0px;
height: 120px;
}
body .underbackground .header {
display: flex;
position: absolute;
top: calc(50% - 10px);
left: 30px;
right: 20px;
transform: translateY(-50%);
z-index: 1000;
color: #F69899;
line-height: 32px;
}
body .underbackgroun.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0