How to vertically align a progress bar in Twitter Bootstrap?

后端 未结 5 612
天命终不由人
天命终不由人 2020-12-13 07:30

I\'m using the progressbar control of twitter-bootstrap.

I want to align it vertically to look like in the following image:

5条回答
  •  心在旅途
    2020-12-13 08:12

    CSS

    .progress{
    position: absolute;left:50.5%;top:40%;width: 2.5%;height:50%;opacity: 0.8; filter: alpha(opacity=80);
    }
    .progress-bar{
      position:absolute;top:20%; width: 100%;height: 80%;
    }
    

    See complete Code and implementation here

提交回复
热议问题