html – 同一行上的两个不同的提交按钮

前端之家收集整理的这篇文章主要介绍了html – 同一行上的两个不同的提交按钮前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有两个提交按钮的两个不同形式的一部分.它们显示在两条不同的线上.是否有可能将它们并排放在一条线上.
<form action="" method="POST">
        <input type="submit" name = "" value="OK" >
                    </form> 
<form action="" method="POST">
        <input type="submit" name = "" value="Cancel" >
                    </form>

解决方法

<div style="width:400px;">
    <div style="float: left; width: 130px"> 
        <form id="thisone" action="post_nrs_users.asp" method="post">
            <input type="submit" name = "" value="OK" >
        </form>
    </div>
    <div style="float: right; width: 225px"> 
        <form id="thistoo" action="post_nrs_users.asp" method="post">
            <input type="submit" name = "" value="Cancel" >
        </form>
    </div>
</div>
原文链接:https://www.f2er.com/html/226979.html

猜你在找的HTML相关文章