Fluid offsetting
Operates the same way as the fixed grid system offsetting: add .offset* to any column to offset by that many columns.
Example
<!DOCTYPE html> <html> <head> <title>Bootstrap Tutorial</title> <link href="css/bootstrap.min.css" rel="stylesheet"> </head> <body> <div class="row-fluid"> <div class="span4">...</div> <div class="span4 offset2">...</div> </div> </body> </html>