How do I know if a class such as mt-3 or table-left belongs to bootstrap or not?
Is there something like a website or tool, or something inside VSCode that helps me to check if a class is a bootstrap keyword or not?
CodePudding user response:
- Open your inspector via right click "inspect".
- Then select the element you are targeting.
- Next look at the classes it has
- search if bootstrap has those classes to via their documentation or via google
Manual labor required. Sorry.
CodePudding user response:
I don't know if VSCode has a built in check but you can always just type in the class at the search bar at https://getbootstrap.com/docs/5.1/getting-started/introduction/ and if it shows something there it is a bootstrap class.
