BS 4 Input Control Size

Is there any way of getting the input control larger than the “Large” setting? I would like a fontsize of 50 in it.

You can do this at runtime:

Input1_contents.style.fontSize = "50px"

I realize this, but the size of the Input Box doesn’t increase - is there any way of doing that?

I put something like this into the project css, then add inputTextbox as the control class

.inputTextbox {
align: Right !important; 
font-size: 18px !important;
Right: 2% !important;
width: 45% !important; 
height: 42px !important;
line-height: 32px !important;
padding-all: 8px !important;
padding-top: 4px !important;
user-Select: none;
}
1 Like