css布局实现胡桃夹子效果代码

代码语言:html

所属分类:布局界面

代码描述:css布局实现胡桃夹子效果代码

代码标签: css 布局 胡桃 夹子

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

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

<head>
  <meta charset="UTF-8">

  
<style>
.container {
  background: radial-gradient(ellipse at center, #e05565 0%, #9d0e2b 100%);
  position: absolute;
  height: 100%;
  width: 100%;
}

.wrapper {
  left: calc(50% - 75px);
  position: absolute;
  top: calc(50% - (329px / 2));
}

.helmet {
  background: #000;
  border-bottom: 20px solid #ffd700;
  border-radius: 50px 50px 0 0;
  height: 150.........完整代码请登录后点击上方下载按钮下载查看

网友评论0