I've been attempting to customize an input field using inline styles, but I'm running into issues.
Here's what I tried:
<div class="row vh-md-100">
<div class="col-md-7 my-md-auto text-center text-md-left">
<h1 class="display-3 text-white font-weight-bold">Div</h1>
<p class="lead text-light my-4">Div</p>
<input style="width:1;" width="1" placeholder="What is your best email">
<a href="#signup" class="btn btn-primary page-scroll">send</a>
</div>
</div>
I expected the width of the input field to change based on the style I added, but it doesn't seem to be working. Can someone point out what I might be missing?