AfshinZavvar
AfshinZavvar

Reputation: 752

Display a text in right-top-corner of Bootstrap panel-body

I show a news content into Bootstrap panel
left side is image and top-right side should be date of news

   <div class="panel-body">
        RenderImage(x.Image)
        <div class="pull-right"  style="margin-top: 0;>
            Date()
        </div>

But date content is not on top-right.

Upvotes: 1

Views: 3501

Answers (1)

Praveen Murali
Praveen Murali

Reputation: 741

Try wrapping the content inside row and column like this.

<div class="panel-body">
    <div class="row">
        <div class="col-xs-12">
            <div class="pull-right" style="margin-top: 0;>Date()</div>
            RenderImage(x.Image)
        </div>
    </div>
</div>

Upvotes: 1

Related Questions