There are 3 ways to set the default height:
1. Add the following style code to set the default height.
<style>
.textbox .textbox-text{
height:20px;
box-sizing:border-box;
}
</style>
2. Override the $.fn.textbox.defaults.height.
<script>
$.extend($.fn.textbox.defaults, {
height: 22
});
</script>
3. Set the height when creating the component.
<input class="easyui-textbox" style="height:22px">