which input type defines a slider control?
Answers
Answered by
3
In HTML:
<input type=”range”>
Defines a control for entering a number whose exact value is not important (like a slider control). Default range is from 0 to 100
<input type=”range”>
Defines a control for entering a number whose exact value is not important (like a slider control). Default range is from 0 to 100
Answered by
1
Answer:
Range is the input type that defines a slider control.
Explanation:
There are many input types like button, search, color, date, month, hidden, radio, password, etc., in HTML.
For defining a slider control in which the accurate value entered is not of much importance, then input type 'range' can be used.
An example:
<input type="range" name="slide" min="0" max="50">
Similar questions