如何让按钮浮动在父容器的右边?
有代码如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="container">
<p class="item">this is test para</p>
<button >按钮</button>
</div>
<style>
.container {
flex-wrap: wrap;
background-color: azure;
width: 300px;
}
.item {
width: 150px;
height: 50px;
background-color: antiquewhite;
border: 1px solid black;
display: inline-block;
}
</style>
</body>
</html>
目前的效果如图所示:
现在如果想要让按钮是在容器的右边,而不是紧挨着<p>标签,请问应该如何做呢?
回复
1个回答
test
2024-06-28
.container {
justify-content: space-between;
display: flex;
}
回复
适合作为回答的
- 经过验证的有效解决办法
- 自己的经验指引,对解决问题有帮助
- 遵循 Markdown 语法排版,代码语义正确
不该作为回答的
- 询问内容细节或回复楼层
- 与题目无关的内容
- “赞”“顶”“同问”“看手册”“解决了没”等毫无意义的内容