Author: admin
-
Trade War
A trade war is an economic conflict between countries. It occurs when countries engage in a series of actions, such as imposing tariffs (taxes) and trade barriers on each other’s goods and services. These actions escalate trade tensions, often leading to a decrease in international trade and causing disruptions in the global economy. Example:In 2002,…
-
Inflation
Inflation is when prices of goods and services keep increasing constantly. This continuous increase in prices reduces the consumers’ purchasing power. For example, the amount of money that lets us buy 100 things today will only let us buy 50 things in the future. So, with the same amount of money, we can’t buy as many…
-
What are the important rules that you should follow while using Grids in Bootstrap?
The following three rules should be strictly kept in mind while using Grids in Bootstrap:-
-
Discuss the properties of flexbox
The properties of flexbox are: To make a flexible container and convert direct children elements into flex items, use the “display” utility. Additional flex characteristics can be used to further customize flex containers and items. Default flexbox container: You can also create an inline flexbox container. Responsive variations also exist. You can use direction…
-
What classes can help you change the default settings of positioning a popover and closing a popover?
The popover will show on the right side of the element by default. To position the popover on the top, bottom, left, or right side of the element, use the data-placement attribute. When you click on the element again, the popover closes by default. However, the data-trigger=”focus” attribute can be used to close the popover…
-
How is tooltip different from popover?
When the user moves the mouse pointer over an element, the Tooltip component appears as a little pop-up box. The Popover component is a pop-up box that emerges when the user clicks on an element. The popover may hold a lot more information. The popover will show on the right side of the element by…
-
Why is Jumbotron used in Bootstrap?
In Bootstrap, Jumbotron is used to highlight contents. It enlarges the headline and provides a margin for the landing page’s content. In order to implement Jumbotron in Bootstrap, create a container div with the .jumbotron class.
-
In Bootstrap, what is a scrollspy?
It’s an auto-updating nav component that allows you to grab sections of the page based on where you’re scrolling. Based on the scroll position, the .active class will update from one nav item to the next.
-
What are Bootstrap collapsing elements?
You may collapse any element with Bootstrap collapsing elements without creating any JavaScript code or accordion markup. To automatically delegate control of a collapsible element in bootstrap, add data-toggle= “collapse” to the controller element along with a data-target or href. You may also do the same thing with .collapse (options), .collapse (‘show’), or .collapse (‘hide’).
-
Explain the affix plugin.
The affix plugin allows you to affix a <div> to a particular location on the page. You may also use this plugin to turn on and off the pinning. Social icons are a good example of this. They’ll start in one position, but when the page reaches a certain point, the <div> will be frozen…