- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title></title>
- </head>
- <body>
-
-
- <div class="bigview1">
- <div class="bigview">
- <div class="item">
- <div class="smorediv"></div>
- <div>化学课</div>
- </div>
- <div class="item">
- <div class="smorediv"></div>
- <div>化学课</div>
- </div>
- <div class="item">
- <div class="smorediv"></div>
- <div>化学课</div>
- </div>
- <div class="item">
- <div class="smorediv"></div>
- <div>化学课</div>
- </div>
- <div class="item">
- <div class="smorediv"></div>
- <div>化学课</div>
- </div>
- </div>
- </div>
-
-
- <style>
- .bigview1{
- width: 500px;
- height: 200px;
- background-color: cornflowerblue;
- display: flex;
- align-items: center;
- }
- .bigview{
- width: 500px;
- height: 100px;
- background-color: blue;
- background-color: aqua;
- display: flex;
- justify-content: space-around;
- align-items:center;
- }
- .item{
- /* height: 100px; */
- display: flex;
- flex-direction: column;
- font-size: 10px;
- text-align: center;
- color: white;
- }
- .smorediv{
- width: 50px;
- height: 50px;
- background-color: red;
-
- }
- </style>
- </body>
- </html>
