Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将 Twitter Bootstrap CSS 添加到 ERB 文件并使用 Sinatra 运行,但 CSS 不显示。
我的代码:
<link rel="stylesheet" href="/lib/bootstrap/css/bootstrap.min.css">
我的文件夹结构在代码中是相同的。
我已经尝试过href="lib/...并且href="../lib/...不工作
href="lib/...
href="../lib/...
有什么解决办法吗?
您应该复制bootstrap.min.css到您的 Sinatrapublic目录中。然后使用:
bootstrap.min.css
public
<link rel="stylesheet" href="/bootstrap.min.css">
将其包含在您的页面中。