Angular 中的 Bootstrap
Rana Hasnain Khan
2022年4月20日
我們將介紹如何在 Angular 中使用 Bootstrap。
Angular 中的 Bootstrap
Bootstrap
是一個 CSS 框架,用於更快地設計響應式和移動友好的網站。它是最流行的框架,被廣泛使用。
我們還可以按照這些簡單易行的步驟在 Angular 應用程式中使用 Bootstrap。
首先,我們需要在 Angular 專案中安裝 Bootstrap,為此,我們需要轉到終端並執行以下命令。
# cli
npm install bootstrap -save
此命令將在我們的 Angular 專案中安裝 Bootstrap。但是,如果你在專案中使用 SASS
,我建議你安裝 bootstrap-sass
。
# cli
npm install bootstrap-sass -save
安裝 Bootstrap 後,它將儲存在節點模組中,現在我們只需要使用以下匯入命令在要使用 Bootstrap 的任何地方匯入 Bootstrap CSS。
# angular
@import '~bootstrap/dist/css/bootstrap.css';
或者,如果你使用的是 SASS
。
# angular
$icon-font-path: '~bootstrap-sass/assets/fonts/bootstrap/';
@import '~bootstrap-sass/assets/stylesheets/bootstrap';
通過遵循這些步驟,我們可以輕鬆地在任何 Angular 應用程式中安裝 Bootstrap,並通過使用 Bootstrap 類使其具有響應性和移動友好性。
Author: Rana Hasnain Khan
Rana is a computer science graduate passionate about helping people to build and diagnose scalable web application problems and problems developers face across the full-stack.
LinkedIn