Bootstrap: How do I identify the Bootstrap version?

后端 未结 11 1267
借酒劲吻你
借酒劲吻你 2021-01-31 12:43

I want to update Bootstrap on a site, but I don\'t know the installed version.

How can I identify the bootstrap version, with only bootstrap.css and bootstrap.min.js fil

11条回答
  •  滥情空心
    2021-01-31 13:44

    To expound more on @vrian's answer

    To view the bootstrap version of a website in your web browser, do the following:

    First Method:

    • Open the website on your favourite browser
    • Press Ctrl + U to view the web page source
    • Look at the head section for a file named boostrap.min.js or boostrap.min.css. It should look like this
    • Then click it to open the source file
    • This will display the bootstrap version of the website. It should look like this: Bootstrap v4.4.1 (https://getbootstrap.com/)

    Second Method:

    • Open the website on your favourite browser
    • Press Ctrl + Shift + I to inspect the webpage element
    • In the inspect console, click on the Style Editor tab
    • And then click on boostrap.min.css
    • This will display the bootstrap version of the website. It should look like this: Bootstrap v4.4.1 (https://getbootstrap.com/)

    That's all

    I hope this helps

提交回复
热议问题