<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>text</title>
<style>
.father {
display: flex;
}
.kid1 {
width: 20%;
height: 620px;
background-color: cornflowerblue;
}
.kid2{
display: flex;
}
.kid2 div{
background-color: darkkhaki;
width: 200px;
height: 305px;
margin-bottom: 10px;
margin-left: 10px;
}
.kid3{
display: flex;
}
.kid3 div{
background-color: red;
width: 200px;
height: 305px;
margin-bottom: 10px;
margin-left: 10px;
}
</style>
</head>
<body>
<div class="father">
<div class="kid1"></div>
<div class="col">
<div class="kid2">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="kid3">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
</div>
<input type="button" value="按钮" οnclick="click1()"/>
<script type="text/javascript" src="./4.js" charset="utf-8"></script>
</body>
</html>