gpt4 book ai didi

html - 彼此相邻的按钮

转载 作者:行者123 更新时间:2023-11-28 04:37:00 25 4
gpt4 key购买 nike

我有两个按钮,我想将它们并排放置。我该怎么做?每次一个按钮都在另一个按钮下面。这是代码:

CSS:

<style type="text/css">

.button_example{
border:1px solid #B7B7B7;
text-align: center;
color: #FFFFFF;
background-color: #D3D3D3;
}

.button_example:hover{
border:1px solid #B7B7B7;
text-align: center;
color: #1f1f1f;
background-color: #ffffff;
}
</style></head>

HTML:

<div align="right"><a href="http://www.theamazingmonth.pusku.com/rules.html"><input type="button" class="button_example" value="Rules" /></a></div>
<div align="right"><a href="http://www.theamazingmonth.pusku.com/info.html"><input type="button" class="button_example" value="Info" /></a></div>

提前致谢!

最佳答案

查看 jSFiDDLE

去掉多余的div标签,将两个标签都放在一个div标签下

像这样:

  <div align="right">
<a href="http://www.theamazingmonth.pusku.com/rules.html"><input type="button" class="button_example" value="Rules" /></a>
<a href="http://www.theamazingmonth.pusku.com/info.html"><input type="button" class="button_example" value="Info" /></a>
</div>

关于html - 彼此相邻的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16882346/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com