How to change bootstrap font color

(*-*)浩
Release: 2019-07-18 14:46:42
Original
8760 people have browsed it

Let’s first take a look at what bootstrap’s custom text color looks like:

How to change bootstrap font color

Code: (Recommended learning: Bootstrap video Tutorial)

nbsp;html>

  
    
    
    
    
    
    Bootstrap 101 Template
    
    
  
  
              

我是muted

              

我是primary

              

我是success

              

我是info

              

我是warning

              

我是danger

                       
Copy after login

Open Bootstrap.css and search for text-muted:

The results are as follows:

How to change bootstrap font color

So we can see that the text color style given by bootstrap by default is:

.text-muted{  color: #777 ;  }

.text-primary{  color: #337ab7 ;  }

.text-success{  color: #3c763d ;  }

.text-info{  color: #31708f ;  }

.text-warning{  color: #8a6d3b ;  }

.text-danger{  color: #a94442 ;  }
Copy after login

We can also modify and add based on these styles to get styles that meet our own needs.

For more technical articles related to Bootstrap, please visit the Bootstrap Tutorial column to learn!

The above is the detailed content of How to change bootstrap font color. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!