TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: How to identify a website built with Bootstrap?

7 点作者 prakster超过 11 年前
I tried doing a "View source", but couldn't figure out how to definitively know whether a given website built with Bootstrap or not. (Also tried a Google search before posting on HN.)

5 条评论

hardwaresofton超过 11 年前
Markup is the way to go, look at classes of buttons, divs and spans. Look for <i>-lg or span</i>s and stuff like that.<p>That... and you could open up the dev console
sganesh超过 11 年前
Checkout <a href="http://builtwith.com" rel="nofollow">http:&#x2F;&#x2F;builtwith.com</a>. If the css is not renamed, merged or minified it will be listed in the technologies used. Else, you have to do the one of the other suggestions here.
YoAdrian超过 11 年前
View source and look for a CSS file named something like &quot;bootstrap&quot;.
评论 #6490301 未加载
ivanbrussik超过 11 年前
I&#x27;d also like to suggest a really cool browser plugin called Wappalyzer. Its really good (ok, kind of decent) at guessing the platforum of a website and will even guess plugins, frameworks, CMS, web server and I think sometimes even host.
richbradshaw超过 11 年前
A mildly decent way is to check for `span[0-9]+` or the newer `col-` whatever classes. A site using classes of `container` and the ones previously mentioned probably has a 80%+ chance of using the bootstrap grid.