bootstrap5图标使用
时间: 2023-07-11 12:52:08 浏览: 182
Bootstrap5 图标库 bootstrap-icons
要在Bootstrap 5中使用图标,可以使用Bootstrap提供的内置图标库,也可以使用其他图标库,如Font Awesome。
使用Bootstrap内置图标库:
1. 在HTML文档的<head>标签内引入Bootstrap的CSS文件和JS文件:
```html
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.bundle.min.js"></script>
</head>
```
2. 在HTML文档中,使用<i>标签和相应的class来插入图标,例如:
```html
<i class="bi bi-heart-fill"></i>
```
其中,class的格式为"bi bi-图标名称",可以在Bootstrap官方文档中查找图标名称。
使用Font Awesome图标库:
1. 在HTML文档的<head>标签内引入Font Awesome的CSS文件:
```html
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
```
2. 在HTML文档中,使用<i>标签和相应的class来插入图标,例如:
```html
<i class="fas fa-heart"></i>
```
其中,class的格式为"图标库名称 图标类型 图标名称",可以在Font Awesome官方文档中查找图标名称。
阅读全文