search
HomeWeb Front-endBootstrap TutorialA brief discussion on the usage of Glyphicons icons in Bootstrap

This article will introduce to you the usage of Glyphicons icons in Bootstrap. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to everyone.

A brief discussion on the usage of Glyphicons icons in Bootstrap

Available Icons

Bootstrap3 provides almost 300 font icons from Glyphicon Halflings, which can be used for buttons, links, navigation and forms, etc. element. The most common icons are shown in Figure 3-1:

A brief discussion on the usage of Glyphicons icons in Bootstrap
Figure 3-1 Icons provided by Glyphicons

Glyphicons Halflings are generally paid, but their authors Bootstrap is allowed to be used for free. To express our gratitude, I hope you will try your best to add a friendly link to Glyphicons when using it.

Related recommendations: "bootstrap tutorial"

How to use

The usage of font icons is very simple. Apply the icon class on any inline-level element. Can. However, since the icon class cannot be used directly with other components, it is usually necessary to create a separate inline-level element to place the icon.

For performance reasons, all icons require a base class .glyphicon and a .glyphicon-* class corresponding to each icon. In order to avoid potentially confusing output content captured by screen reading devices, it is recommended to set the aria-hidden="true" attribute for the icon. For example, the following is the code to add a search icon:

<span class="glyphicon glyphicon-search" aria-hidden="true"></span>

Bootstrap assumes that all icon font files are located in the ../fonts/ directory (relative to the directory of the precompiled CSS file) . If you modify the location of the icon font file, you need to choose any of the following methods to update the CSS file according to your own situation:

  • Modify @icon in the Less source file -font-path and/or @icon-font-name variables.
  • Use the relative URL address option provided by the Less compiler.
  • Modify the url() address in the precompiled CSS file.

Usage examples

You can use these icons to design wherever needed, such as button groups, buttons, navigation, form input boxes, warning boxes and other components. Beautiful interface. For example, in button groups and buttons:

<button type="button" class="btn btn-default" aria-label="Left Align">
  <span class="glyphicon glyphicon-align-left" aria-hidden="true"></span>
</button>
<button type="button" class="btn btn-default btn-lg">
  <span class="glyphicon glyphicon-star" aria-hidden="true"></span> Star
</button>

The effect is shown in Figure 3-2:

A brief discussion on the usage of Glyphicons icons in Bootstrap##Figure 3-2 Using font icons in button groups
The icon contained in the

alert component is used to indicate that this is an error message. By adding additional

.sr-only text, you can let the assistive device know what this prompt means. . For example:

<div class="alert alert-danger" role="alert">
  <span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
  <span class="sr-only">Error:</span>
  Enter a valid email address
</div>

The effect is shown in Figure 3‑3:

A brief discussion on the usage of Glyphicons icons in BootstrapFigure 3-3 Using icons in the warning box

Customized icon

A very convenient thing about font icons is that you can customize the appearance of the icon through CSS. It is no exaggeration to say that as long as CSS supports it, no matter the color, size, shadow or any other effect, it can be easily displayed in the font icon. Suppose a font icon is used on a button:

<button type="button" class="btn btn-primary">
  <span class="glyphicon glyphicon-user"></span> User
</button>

The effect is shown in Figure 3‑4:

##Figure 3-4 Font iconA brief discussion on the usage of Glyphicons icons in Bootstrap
If If you want the icon to be slightly larger, you can apply the .btn-lg class to the button, or set the font size via CSS to get an icon of any size. For example:

<button type="button" class="btn btn-primary"   style="max-width:90%">
  <span class="glyphicon glyphicon-user"></span> User
</button>

The effect is shown in Figure 3‑5:

Figure 3-5 Font icon sizeA brief discussion on the usage of Glyphicons icons in Bootstrap尺寸
You can also use the same method Get the icon color you want by setting the button's text color. For example:

<button type="button" class="btn btn-primary"   style="max-width:90%">
  <span class="glyphicon glyphicon-user"></span> User
</button>

The effect is shown in Figure 3‑6:

Figure 3-6 Font icon colorA brief discussion on the usage of Glyphicons icons in Bootstrap颜色
Even, you can also set the icon Add text shadow. For example:

<button type="button" class="btn btn-primary"   style="max-width:90%">
  <span class="glyphicon glyphicon-user"></span> User
</button>

The effect is shown in Figure 3-7:

Figure 3-7 Font icon shadowA brief discussion on the usage of Glyphicons icons in Bootstrap阴影
For more programming-related knowledge, please Visit:

Introduction to Programming

! !

The above is the detailed content of A brief discussion on the usage of Glyphicons icons in Bootstrap. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:csdn. If there is any infringement, please contact admin@php.cn delete
Integrating Bootstrap Styles in React: Methods and TechniquesIntegrating Bootstrap Styles in React: Methods and TechniquesApr 17, 2025 am 12:04 AM

Integrating Bootstrap in React projects can be done in two ways: 1) introduced using CDN, suitable for small projects or rapid prototyping; 2) installation using npm package manager, suitable for scenarios that require deep customization. With these methods, you can quickly build beautiful and responsive user interfaces in React.

Bootstrap in React: Advantages and Best PracticesBootstrap in React: Advantages and Best PracticesApr 16, 2025 am 12:17 AM

Advantages of integrating Bootstrap into React projects include: 1) rapid development, 2) consistency and maintainability, and 3) responsive design. By directly introducing CSS files or using the React-Bootstrap library, you can use Bootstrap's components and styles efficiently in your React project.

Bootstrap: A Quick Guide to Web FrameworksBootstrap: A Quick Guide to Web FrameworksApr 15, 2025 am 12:10 AM

Bootstrap is a framework developed by Twitter to help quickly build responsive, mobile-first websites and applications. 1. Ease of use and rich component libraries make development faster. 2. The huge community provides support and solutions. 3. Introduce and use class names to control styles through CDN, such as creating responsive grids. 4. Customizable styles and extension components. 5. Advantages include rapid development and responsive design, while disadvantages are style consistency and learning curve.

Breaking Down Bootstrap: What It Is and Why It MattersBreaking Down Bootstrap: What It Is and Why It MattersApr 14, 2025 am 12:05 AM

Bootstrapisafree,open-sourceCSSframeworkthatsimplifiesresponsiveandmobile-firstwebsitedevelopment.Itofferspre-styledcomponentsandagridsystem,streamliningthecreationofaestheticallypleasingandfunctionalwebdesigns.

Bootstrap: Making Web Design EasierBootstrap: Making Web Design EasierApr 13, 2025 am 12:10 AM

What makes web design easier is Bootstrap? Its preset components, responsive design and rich community support. 1) Preset component libraries and styles allow developers to avoid writing complex CSS code; 2) Built-in grid system simplifies the creation of responsive layouts; 3) Community support provides rich resources and solutions.

Bootstrap's Impact: Accelerating Web DevelopmentBootstrap's Impact: Accelerating Web DevelopmentApr 12, 2025 am 12:05 AM

Bootstrap accelerates web development, and by providing predefined styles and components, developers can quickly build responsive websites. 1) It shortens development time, such as completing the basic layout within a few days in the project. 2) Through Sass variables and mixins, Bootstrap allows custom styles to meet specific needs. 3) Using the CDN version can optimize performance and improve loading speed.

Understanding Bootstrap: Core Concepts and FeaturesUnderstanding Bootstrap: Core Concepts and FeaturesApr 11, 2025 am 12:01 AM

Bootstrap is an open source front-end framework, and its main function is to help developers quickly build responsive websites. 1) It provides predefined CSS classes and JavaScript plug-ins to facilitate the implementation of complex UI effects. 2) The working principle of Bootstrap relies on its CSS and JavaScript components to realize responsive design through media queries. 3) Examples of usage include basic usage, such as creating buttons, and advanced usage, such as custom styles. 4) Common errors include misspelling of class names and incorrectly introducing files. It is recommended to use browser developer tools to debug. 5) Performance optimization can be achieved through custom build tools, best practices include predefined using semantic HTML and Bootstrap

Bootstrap Deep Dive: Responsive Design & Advanced Layout TechniquesBootstrap Deep Dive: Responsive Design & Advanced Layout TechniquesApr 10, 2025 am 09:35 AM

Bootstrap implements responsive design through grid systems and media queries, making the website adapted to different devices. 1. Use a predefined class (such as col-sm-6) to define the column width. 2. The grid system is based on 12 columns, and it is necessary to note that the sum does not exceed 12. 3. Use breakpoints (such as sm, md, lg) to define the layout under different screen sizes.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function