I am using twitter bootstrap i want to hide the vertical line when mobile screen -
i want hide vertical line when mobile screen using twitter bootstrap
.mycontent-left { border-right: 1px dashed #333; } <div class="row"> <div class="span6"> <div class="mycontent-left"> </div> </div> <div class="span6"> <div class="mycontent-right"> </div> </div> </div>
i guess can use media query hinted here.
@media (min-width: 768px) { .mycontent-left { border-right: 1px dashed #333; } }
you may experiment , change markup like:
<div class="row"> <div class="col-xs-6 mycontent-left"> left </div> <div class="col-xs-6"> right </div> </div>
here 1 jsfiddle you.
i friendly recommend familiar grid system bootstap introduces responsive utilities.
Comments
Post a Comment