Blogger Information
Blog 7
fans 0
comment 0
visits 3441
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
0705作业
曾宇的博客
Original
363 people have browsed it

<!DOCTYPE html>

<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
}


:root {
font-size: 10px;

}

body {
font-size: 1.6rem;
}

.container {
height: 20rem;
display: flex;
display: flex;
background-color: wheat;
/ 允许换行 /
flex-wrap: wrap;
/ 反向排列 /
flex-direction: row-reverse;


}

.container>.item {
background-color: blue;
border: 1px solid;
padding: 1rem;
height: 5rem;
}
</style>
</head>

<body>
<div class="container">
<div class="item">item1</div>
<div class="item">item2</div>
<div class="item"> item3</div>
<div class="item"> item4</div>
<div class="item"> item5</div>
<div class="item"> item6</div>
<div class="item"> item7</div>
<div class="item"> item8</div>


</div>

</body>

</html>

Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:建议了解了一下简单的markdown语法,代码放在代码段中再提交,这样好看一些
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!