Computer Science, asked by shelbyjones21, 1 month ago

Match the following:

1.The class that can be used to make a button unclickable:
2.The class that helps to draw a toolbar of buttons
3.The class which is used for a basic button group
4.The class that can be applied to button group instead of resizing each button.

Answers

Answered by kuswahaaaditya33
1

3.the class which is used for a basic button group

Answered by ravilaccs
0

Answer:

  1. disabled
  2. btn-toolbar
  3. btn-group
  4. .btn-group-lg, .btn-group-sm, .btn-group-xs

Explanation:

1.The class that can be used to make a button unclickable: disabled

  • Button can be displayed as active (that appears to be pressed) or disabled (that appears to be unclickable) state.
  • For active button, the class .active is used to make a button appear pressed, and the disabled attribute makes a button unclickable.
  • <a> elements do not support the disabled attribute and must therefore use the .disabled class to make it visually appear disabled.

2.The class that helps to draw a toolbar of buttons-.btn-toolbar

  • Button groups allow multiple buttons to be stacked together on a single line. This is useful when you want to place items like alignment buttons together. This helps to combine sets of <div class = "btn-group"> into a <div class = "btn-toolbar"> for more complex components.

3.The class which is used for a basic button group -btn-group”

  • “Button Groups” in Bootstrap is a class of name “btn-group” which is used to create series of buttons in groups (without spaces) vertically or horizontally. This is the basic syntax of the button group class where each button has its own class of “btn”.
  • <div class="btn-group">  <button type="button" lass="btn">Click</button> </div>

4.The class that can be applied to button group instead of resizing each button.

.btn-group-lg, .btn-group-sm, .btn-group-xs classes can be applied to button group instead of resizing each button.

These classes can be applied to button group instead of resizing each button.

<div class = "btn-group btn-group-lg">...</div>

<div class = "btn-group btn-group-sm">...</div>

<div class = "btn-group btn-group-xs">...</div>

Reference link

  • https://brainly.in/question/7638666
  • https://brainly.in/question/23613904
Similar questions