LayoutPH
LayoutPH

Reputation: 409

Create basic rounded shape in Bootstrap

is there a built in class in BOOTSTRAP that can produce a simple blue round box as a place holder for my Copyright, or sidebar title just like from the attached picture? Thank you!

enter image description here

Upvotes: 0

Views: 89

Answers (1)

Carol Skelly
Carol Skelly

Reputation: 362700

You could use a list-group with a single active list-group-item..

<ul class="list-group">
    <li class="list-group-item active text-center">Text here...</li>
</ul>

Demo: http://www.bootply.com/YitGAxRo48

Upvotes: 2

Related Questions