css布局实现一个收音机效果代码

代码语言:html

所属分类:布局界面

代码描述:css布局实现一个收音机效果代码

代码标签: 一个 收音机 效果

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开


<!DOCTYPE html>
<html lang="en" >

<head>

  <meta charset="UTF-8">
  
  
  
  
<style>
html,
body {
  height: 100%;
}

body {
  background: #F6BAF1;  
  overflow: hidden;
  justify-content: center;
  align-items: center;
}

.container {
  padding: 150px 50px 50px 50px;
  justify-content: center;
  align-items: center;
}

.wrapper {
  background-color: #78F8DD;
  border: 10px solid #F5F56D;
  max-width: 400px;
  height: 270px;
  border-radius: 20px;
  margin: 0 auto;
  position: relative;
  z-index: 100000;
}

.vintage {
  position: sticky;
  background-color: black;
  margin: 0 0 0 220px;
  width: 50px;
 .........完整代码请登录后点击上方下载按钮下载查看

网友评论0