I try to make two elements input
type text and input
type button in a single line and each element get half of the space.
Here is how I try to achieve it:
#myCard{
border-style: solid;
border-width: thin;
padding: 12px 5px 5px 5px;
}
.halfWidth{
position: relative;;
width:50%;
}
<div class="myCard">
<input type="text" class="halfWidth" value="click">
<input type="button" class="halfWidth" value="click" onclick="foo()">
</div>