我正在尝试使用按钮创建一个简单的输入文本。但我想要输入框内的按钮。我正在使用 CSS flexbox。
下面是代码
<style>
.container{
display: flex;
width: 500px;
justify-content: center;
align-items: center;
margin: 0 auto;
}
input{
height: 60px;
width: 320px;
background-color: #fce6ef;
border-radius: 50px;
border: 1px solid #ffc5dd;
}
button{
height: 54px;
width: 94px;
background-color: #ff0266;
color: #ffffff;
text-transform: uppercase;
border-style: none;
border-radius: 50px;
}
</style>
<body>
<div class="container">
<input type="text">
<button>Submit</button>
</div>
</body>
附上图片以便更好地理解:
潇潇雨雨
茅侃侃
至尊宝的传说
九州编程
智慧大石
相关分类