Here is the filter itself with input , I just can’t change the size of the inputs, not at all
link to the layout of the filter
Please tell me what to do? normal editing of the css file is indispensable
Here is the filter itself with input , I just can’t change the size of the inputs, not at all
link to the layout of the filter
Please tell me what to do? normal editing of the css file is indispensable
You can specify a CSS
style for input
by class, id, or type (usually):
input[type="text"], input.someClass, input#someID { border: 1px solid black; border-radius: 5px; width: someValue; //И дальше все что вам необходимо }
There is an exception with checkbox
and radio
inputs: It is better not to use css
with pseudo-classes, because there will be many problems in different browsers.
Use: iCheck
Source: https://ru.stackoverflow.com/questions/553220/
All Articles