但是我要在div里面写入其他按钮怎么办
您可以在同一个div中添加其他按钮,例如:
<div>
<button>按钮1</button>
<button>按钮2</button>
<button>按钮3</button>
</div>
您也可以使用CSS来控制按钮的样式和位置。例如,使用flexbox布局将按钮水平居中:
div {
display: flex;
justify-content: center;
}
button {
margin: 0 10px;
}
原文地址: https://www.cveoy.top/t/topic/bsjK 著作权归作者所有。请勿转载和采集!