Bootstrap Question:
Download Job Interview Questions and Answers PDF
Do you know what are input groups?
Answer:
Input groups are extended Form Controls. Using input groups you can easily prepend and append text or buttons to the text-based inputs.
By adding prepended and appended content to an input field, you can add common elements to the user's input. For example, you can add the dollar symbol, the @ for a Twitter username, or anything else that might be common for your application interface.
To prepend or append elements to a .form-control −
☛ Wrap it in a <div> with class .input-group
☛ As a next step, within that same <div> , place your extra content inside a <span> with class .input-group-addon.
☛ Now place this <span> either before or after the <input> element.
By adding prepended and appended content to an input field, you can add common elements to the user's input. For example, you can add the dollar symbol, the @ for a Twitter username, or anything else that might be common for your application interface.
To prepend or append elements to a .form-control −
☛ Wrap it in a <div> with class .input-group
☛ As a next step, within that same <div> , place your extra content inside a <span> with class .input-group-addon.
☛ Now place this <span> either before or after the <input> element.
Download Bootstrap Interview Questions And Answers
PDF
Previous Question | Next Question |
Explain me how will you create a Bootstrap Dismissal Alert? | Explain me how do you use the Dropdown plugin? |