How to put responsive background on col-md

1

HowcanInotrepeatthisbackground?html:

<divclass="col-md-12">
        <div class="panel panel-default sharp">
            <div class="conteudo_me">

            </div>
        </div>
    </div><!-- /.col-md-12 -->

css:

.conteudo_me {
background: url(../img/view.png);
height:255px;
width:100% auto;

background-position: 0px 280px; 
}
    
asked by anonymous 02.07.2015 / 18:05

2 answers

1

This should meet ...

        background: url(../img/view.png) no-repeat;
    
28.12.2015 / 14:22
0
background-repeat:no-repeat;
 display: compact;

This should work.

    
02.07.2015 / 18:24