Making two HTML buttons go side by side

后端 未结 3 1581
情书的邮戳
情书的邮戳 2021-01-12 04:24

Okay, I\'m not very familiar with HTML, or how it comes together with CSS. I have been looking all over on how to make two HTML buttons go side by side. Here is the code I\'

3条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-12 05:04

    If I understand you correctly, you can just attach the following CSS:

    form {
        display: inline;
    }
    

    As shown here: http://jsfiddle.net/zcz3j/

提交回复
热议问题