xxxxxxxxxx
<div class="item2"><img src="https://www2.cyvs.cy.edu.tw/sv/taqmp.php" /></div>
1
2
<html>
3
<head>
4
<style>
5
.container {
6
display: flex;
7
flex-flow: row wrap;
8
justify-content: center; /* 水平對齊 */
9
align-items: center; /* 垂直對齊 */
10
gap: 20px; /* 留空 */
11
}
12
13
.item1 {
14
flex: 0 0 30%;
15
padding: 10px;
16
background-color: pink;
17
}
18
19
.item2 {
20
flex: 1 1 60%;
21
padding: 10px;
22
background-color: gold;
23
}
24
25
hr { }
26
</style>
27
</head>