Can you help me position a button next to a textbox using CSS?
Here is the HTML code:
<div data-bind="text:name" class="my-name"></div>
<div id="wrapper">
<input class="my-input"/>
</div>
<div data-bind="dxButton: { icon: 'user' }"></div>
This is the CSS code I used:
.my-name{float:left;color:#fd9802;position: absolute}
.my-input{margin:0 auto 0 30%;display:block;}