<html>
<head>
<meta charset="utf-8">
<title>手册网(www.shouce.ren)
</title>
<style>
#main .box{
width:500px;
height:500px;
border:1px solid black;
}
.item{
width:100px;
height:100px;
border-radius:50px;
background:#000000;
}
/* flex样式 */
.box {
display: flex;
justify-content: flex-end;
}
</style>
</head>
<body>
<div id="main">
<div class="box">
<span class="item">
</span>
</div>
</div>
</body>
</html>