I'm attempting to extend a textarea by adjusting the margin-top property, but it doesn't seem to be working as intended. Here is the code snippet in question:
#sqlcontainerLoggedInPage2 {
margin-top: 60px;
}
<div class="container-fluid" id="myContainer">
<textarea id="myTextarea" class="form-control"><?php echo $content; ?></textarea>
</div>
What am I missing or how can I correct this issue?