纯css实现蒙德里安绘画

代码语言:html

所属分类:布局界面

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

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">

<style>
@import url("https://fonts.googleapis.com/css?family=Raleway:300,400&display=swap");
body {
  overflow: hidden;
  font-family: "Raleway", sans-serif;
}

.container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.frame {
  background: white;
  position: relative;
  width: 450px;
  height: 500px;
  border: 3px so.........完整代码请登录后点击上方下载按钮下载查看

网友评论0