I have a form that and I want the two input tags on top and the textarea on bottom. I have the following currently
.uploadFile { margin: 0 auto; width: 50%; } .uploadForm { padding: 10px; } .uploadForm>button { float: right; } <div class="uploadFile"> <form action="includes/upload.inc.php" method="POST" class="uploadForm"> <!-- <input type="file" name="file"> --> <input type="text" name="software-name" id="software-name"> <input type="text" name="filename" placeholder="File name on DigitalOcean Space"> <textarea name="software-description" id="software-desc" cols="30" rows="10"></textarea> <button type="submit">Upload</button> </form> </div> To better understand what I'm trying to do, here's a really bad illustration.
