Reputation: 73
i have linked copy code here please find the result
https://codepen.io/manikandanpa/pen/RyeEpX?editors=1010
Upvotes: 0
Views: 56
Reputation: 1464
You need to move your .ui.labeled.input
into a div
with .fluid.field
<form class="ui form">
<div class="fluid field">
<div class="ui labeled input">
<div class="ui label">
Example
</div>
<input class="ui input " type="text" name="example" required>
</div>
</div>
</form>
https://jsfiddle.net/4x8d56sw/
Upvotes: 0