Having a small challenge with my CSS/HTML code, I am trying to position a full-width input next to my div.
This is my HTML :
<div class="leftdiv"></div>
<input type="text" id="title-input" placeholder="nothing"></div>
And here is the CSS :
.leftdiv {
height: 60px;
float: left;
background-color: aqua;
width: 60px;
}
#title-input {
width: 100%;
height: 60px;
}
I need the "leftdiv" to be exactly 60px x 60px, so I'm unsure if using Bootstrap's row would work for this case.