M
mrsanna1
As an example I have a form with a layout like this:
<div>
<div class="1">
<input type="text">
<input type="text">
</div>
<div class="2">
<input type="text">
<input type="text">
</div>
</div
<div>
<div class="3">
<input type="text">
<input type="text">
</div>
<div class="4">
<input type="text">
<input type="text">
</div>
</div>
div class 3 and 4 are positioned on the right of div 1 and div 2.
If I add an input fied on the right side of the form then input of the left side are scrolled down, how can I add an input in the right side without scrolling down the inputs on the left side?
Thank you.
<div>
<div class="1">
<input type="text">
<input type="text">
</div>
<div class="2">
<input type="text">
<input type="text">
</div>
</div
<div>
<div class="3">
<input type="text">
<input type="text">
</div>
<div class="4">
<input type="text">
<input type="text">
</div>
</div>
div class 3 and 4 are positioned on the right of div 1 and div 2.
If I add an input fied on the right side of the form then input of the left side are scrolled down, how can I add an input in the right side without scrolling down the inputs on the left side?
Thank you.