I want to move the element to the right by a certain number of pixels, the solution in two ways, 1 way to move through the margin-left:
<div> <p style='margin-left: xx px'>some text</p> </div> 2 way to move this element with a bootstrap net or another
<div class='row'> <div class='col-md-4'></div> <div class='col-md-8'> <p>some text</p> </div> </div> Vospros, what method would you prefer (maybe something else)? Is there any difference with adaptive layout?