I've spent a considerable amount of time searching for what I believed would be an easy solution, but have been unsuccessful so far. Here is the structure in question:
<form action="<?= htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES) ?>" method="post" enctype="multipart/form-data">
<input type="file" name="thefile">
<input type="submit" value="Upload File">
<br />
<!-- test key -->
<div class="g-recaptcha" data-sitekey="6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI"></div>
</form>
I am looking to indent it so that it doesn't touch the edge of the designated area. I attempted wrapping it with
<div style="text-indent-left:20px">
, but it had no effect.
How can I properly indent the form?
Thank you.