Suhail Gupta
Suhail Gupta

Reputation: 23276

Is there a built in method to increase the font size?

Is there a built in method in bootstrap to increase the size of the text or a better way of doing it ?

<div class='row'>
            <div class='col-lg-12'>
                <span id='site-name-lg'> SITE NAME </span>
            </div>
</div>

CSS :

#site-name-lg {
  font-size: 90px;
}

Upvotes: 0

Views: 39

Answers (1)

ChaoticNadirs
ChaoticNadirs

Reputation: 2290

Yes, you can use bootstrap's built in lead class to increase the size of text:

<p class="lead">SITE NAME</p>

However, for more flexibility over font sizes you may wish to define your own class anyway.

Bootstrap Docs: http://getbootstrap.com/css/#type-body-copy

Upvotes: 1

Related Questions