Bootstrap 3 Offset rechts nicht links

92

In Bezug auf BS 3 könnte ich eine Offset-Klasse von 9 und eine Spalte von 3 verwenden, wenn ich nur eine schmale Inhaltsspalte rechts haben möchte.

Was aber, wenn ich das Gegenteil und auf der linken Seite wollte? Gibt es eine richtige Möglichkeit, dies in BS zu tun, oder sollte ich nur meine eigenen CSS-Methoden verwenden? Ich dachte daran, eine 3er-Spalte mit meinem Inhalt und nur eine leere 9er-Spalte zu erstellen.

Zusammenarbeiten2013
quelle

Antworten:

94

Bootstrap-Zeilen enthalten immer ihre Floats und erstellen neue Zeilen. Sie müssen sich keine Gedanken über das Füllen leerer Spalten machen, stellen Sie nur sicher, dass sie nicht mehr als 12 ergeben.

<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">

<div class="container">
  <div class="row">
    <div class="col-xs-3 col-xs-offset-9">
      I'm a right column of 3
    </div>
  </div>
  <div class="row">
    <div class="col-xs-3">
      I'm a left column of 3
    </div>
  </div>
  <div class="panel panel-default">
    <div class="panel-body">
      And I'm some content below both columns
    </div>
  </div>
</div>

Ross Allen
quelle
2
Verwenden Sie für eine leere Spalte die Bootstrap- col-X-pull-YKlassen. Zum Beispiel, um etwas mit einer Größe von 50% nach rechts zu verschieben, aber eine Spalte nach rechts zu lassen (in einem Raster mit 12 Spalten als Beispiel):col-xs-6 pull-right col-xs-pull-1
James Cushing
Es befindet sich links, da Sie den Inhalt manuell in verschiedene Zeilen aufteilen. Und wenn Sie sie entfernen und der folgende Inhalt nicht 100% breit ist (dh einigen Spalten mit einer Breite von 50% folgt col-xs-6), wird er sich seltsam stapeln.
kpull1
Ich weiß nicht, warum dies die akzeptierte Antwort mit so vielen Stimmen ist, sie beantwortet nicht die Frage. Alles, was hier passiert ist, ist, dass col-xs-3 in eine Zeile eingeschlossen ist, weshalb kein weiterer Inhalt darauf gelandet ist dieselbe Zeile / Zeile. Wenn es ein anderes col-xs-3 gäbe, wäre es direkt neben dem ersten col-xs-3 in derselben Zeile, sodass diese Antwort die Frage nicht beantwortet. Die Antwort von kpull1 erzielt das gewünschte Ergebnis.
NZ Dev
82

Ich verwende das folgende einfache benutzerdefinierte CSS, das ich geschrieben habe, um dies zu erreichen.

.col-xs-offset-right-12 {
  margin-right: 100%;
}
.col-xs-offset-right-11 {
  margin-right: 91.66666667%;
}
.col-xs-offset-right-10 {
  margin-right: 83.33333333%;
}
.col-xs-offset-right-9 {
  margin-right: 75%;
}
.col-xs-offset-right-8 {
  margin-right: 66.66666667%;
}
.col-xs-offset-right-7 {
  margin-right: 58.33333333%;
}
.col-xs-offset-right-6 {
  margin-right: 50%;
}
.col-xs-offset-right-5 {
  margin-right: 41.66666667%;
}
.col-xs-offset-right-4 {
  margin-right: 33.33333333%;
}
.col-xs-offset-right-3 {
  margin-right: 25%;
}
.col-xs-offset-right-2 {
  margin-right: 16.66666667%;
}
.col-xs-offset-right-1 {
  margin-right: 8.33333333%;
}
.col-xs-offset-right-0 {
  margin-right: 0;
}
@media (min-width: 768px) {
  .col-sm-offset-right-12 {
    margin-right: 100%;
  }
  .col-sm-offset-right-11 {
    margin-right: 91.66666667%;
  }
  .col-sm-offset-right-10 {
    margin-right: 83.33333333%;
  }
  .col-sm-offset-right-9 {
    margin-right: 75%;
  }
  .col-sm-offset-right-8 {
    margin-right: 66.66666667%;
  }
  .col-sm-offset-right-7 {
    margin-right: 58.33333333%;
  }
  .col-sm-offset-right-6 {
    margin-right: 50%;
  }
  .col-sm-offset-right-5 {
    margin-right: 41.66666667%;
  }
  .col-sm-offset-right-4 {
    margin-right: 33.33333333%;
  }
  .col-sm-offset-right-3 {
    margin-right: 25%;
  }
  .col-sm-offset-right-2 {
    margin-right: 16.66666667%;
  }
  .col-sm-offset-right-1 {
    margin-right: 8.33333333%;
  }
  .col-sm-offset-right-0 {
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .col-md-offset-right-12 {
    margin-right: 100%;
  }
  .col-md-offset-right-11 {
    margin-right: 91.66666667%;
  }
  .col-md-offset-right-10 {
    margin-right: 83.33333333%;
  }
  .col-md-offset-right-9 {
    margin-right: 75%;
  }
  .col-md-offset-right-8 {
    margin-right: 66.66666667%;
  }
  .col-md-offset-right-7 {
    margin-right: 58.33333333%;
  }
  .col-md-offset-right-6 {
    margin-right: 50%;
  }
  .col-md-offset-right-5 {
    margin-right: 41.66666667%;
  }
  .col-md-offset-right-4 {
    margin-right: 33.33333333%;
  }
  .col-md-offset-right-3 {
    margin-right: 25%;
  }
  .col-md-offset-right-2 {
    margin-right: 16.66666667%;
  }
  .col-md-offset-right-1 {
    margin-right: 8.33333333%;
  }
  .col-md-offset-right-0 {
    margin-right: 0;
  }
}
@media (min-width: 1200px) {
  .col-lg-offset-right-12 {
    margin-right: 100%;
  }
  .col-lg-offset-right-11 {
    margin-right: 91.66666667%;
  }
  .col-lg-offset-right-10 {
    margin-right: 83.33333333%;
  }
  .col-lg-offset-right-9 {
    margin-right: 75%;
  }
  .col-lg-offset-right-8 {
    margin-right: 66.66666667%;
  }
  .col-lg-offset-right-7 {
    margin-right: 58.33333333%;
  }
  .col-lg-offset-right-6 {
    margin-right: 50%;
  }
  .col-lg-offset-right-5 {
    margin-right: 41.66666667%;
  }
  .col-lg-offset-right-4 {
    margin-right: 33.33333333%;
  }
  .col-lg-offset-right-3 {
    margin-right: 25%;
  }
  .col-lg-offset-right-2 {
    margin-right: 16.66666667%;
  }
  .col-lg-offset-right-1 {
    margin-right: 8.33333333%;
  }
  .col-lg-offset-right-0 {
    margin-right: 0;
  }
}
Rukshan
quelle
2
Die Hardcodierung der Prozentsätze ist nicht ideal. Darüber hinaus können Sie die Funktionsweise des Bootstrap-Rastersystems ändern, sodass Sie nicht garantiert über 12 Spalten verfügen. In diesem Fall schlägt diese Antwort fehl. Sie sollten den Prozentsatz im Verhältnis zur Anzahl der Rasterspalten besser berechnen.
Muhammad Abdul-Rahim
6
Bootstrap macht das gleiche nur von links
Scott
eine großartige Problemumgehung! Dies muss in Bootstrap sein, ich habe nie verstanden, warum sie nicht hinzugefügt haben
FarukT
17

<div class="row">
<div class="col-md-10 col-md-pull-2">
col-md-10 col-md-pull-2
</div>
<div class="col-md-10 col-md-pull-2">
col-md-10 col-md-pull-2
</div>
</div>

Mohammad Jamal Dashtaki
quelle
15

Ich habe Bootstrap SASS (v3.3.5) basierend auf Rukshans Antwort modifiziert

Fügen Sie dies am Ende des calc-grid-columnMixins mixins/_grid-framework.scssdirekt unter der $type == offsetif-Bedingung hinzu.

@if ($type == offset-right) {
      .col-#{$class}-offset-right-#{$index} {
          margin-right: percentage(($index / $grid-columns));
      }
  }

Ändern Sie das make-gridMixin mixins/_grid-framework.scss, um die offset-rightKlassen zu generieren .

// Raster für bestimmte Klasse erstellen
@mixin make-grid ($ class) {
  @include float-grid-column ($ class);
  @include loop-grid-Spalten ($ grid-Spalten, $ Klasse, Breite);
  @include loop-grid-Spalten ($ grid-Spalten, $ Klasse, Pull);
  @include loop-grid-Spalten ($ grid-Spalten, $ Klasse, Push);
  @include loop-grid-Spalten ($ grid-Spalten, $ Klasse, Offset);
  @include loop-grid-column ($ grid-column, $ class, offset-right);
}}

Sie können dann die Klassen wie col-sm-offset-right-2und verwendencol-md-offset-right-1

WeNeigh
quelle
+1 für die Verwendung percentageanstelle der Hardcodierung der Werte; Dies entspricht eher der internen Behandlung des Rastersystems durch Bootstrap und ermöglicht eine variable Rasterspalte, wenn die Standardeinstellung 12 unerwünscht ist.
Muhammad Abdul-Rahim
1

Basierend auf der Antwort von WeNeigh ! Hier ist ein WENIGER Beispiel

.col-offset-right(@i, @type) when (@i >= 0) {
    .col-@{type}-offset-right-@{i} {
        margin-right: percentage((@i / @grid-columns));
    }
    .col-offset-right(@i - 1, @type);
};
.col-offset-right(@grid-columns, xs);
.col-offset-right(@grid-columns, sm);
.col-offset-right(@grid-columns, md);
.col-offset-right(@grid-columns, lg);
user1809033
quelle
1

Da scheint Google diese Antwort zu gefallen ...

Wenn Sie der Namenskonvention von Bootstrap 4 entsprechen möchten, dh Offset - * - #, finden Sie hier die folgende Änderung:

.offset-right-12 {
  margin-right: 100%;
}
.offset-right-11 {
  margin-right: 91.66666667%;
}
.offset-right-10 {
  margin-right: 83.33333333%;
}
.offset-right-9 {
  margin-right: 75%;
}
.offset-right-8 {
  margin-right: 66.66666667%;
}
.offset-right-7 {
  margin-right: 58.33333333%;
}
.offset-right-6 {
  margin-right: 50%;
}
.offset-right-5 {
  margin-right: 41.66666667%;
}
.offset-right-4 {
  margin-right: 33.33333333%;
}
.offset-right-3 {
  margin-right: 25%;
}
.offset-right-2 {
  margin-right: 16.66666667%;
}
.offset-right-1 {
  margin-right: 8.33333333%;
}
.offset-right-0 {
  margin-right: 0;
}
@media (min-width: 576px) {
  .offset-sm-right-12 {
    margin-right: 100%;
  }
  .offset-sm-right-11 {
    margin-right: 91.66666667%;
  }
  .offset-sm-right-10 {
    margin-right: 83.33333333%;
  }
  .offset-sm-right-9 {
    margin-right: 75%;
  }
  .offset-sm-right-8 {
    margin-right: 66.66666667%;
  }
  .offset-sm-right-7 {
    margin-right: 58.33333333%;
  }
  .offset-sm-right-6 {
    margin-right: 50%;
  }
  .offset-sm-right-5 {
    margin-right: 41.66666667%;
  }
  .offset-sm-right-4 {
    margin-right: 33.33333333%;
  }
  .offset-sm-right-3 {
    margin-right: 25%;
  }
  .offset-sm-right-2 {
    margin-right: 16.66666667%;
  }
  .offset-sm-right-1 {
    margin-right: 8.33333333%;
  }
  .offset-sm-right-0 {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .offset-md-right-12 {
    margin-right: 100%;
  }
  .offset-md-right-11 {
    margin-right: 91.66666667%;
  }
  .offset-md-right-10 {
    margin-right: 83.33333333%;
  }
  .offset-md-right-9 {
    margin-right: 75%;
  }
  .offset-md-right-8 {
    margin-right: 66.66666667%;
  }
  .offset-md-right-7 {
    margin-right: 58.33333333%;
  }
  .offset-md-right-6 {
    margin-right: 50%;
  }
  .offset-md-right-5 {
    margin-right: 41.66666667%;
  }
  .offset-md-right-4 {
    margin-right: 33.33333333%;
  }
  .offset-md-right-3 {
    margin-right: 25%;
  }
  .offset-md-right-2 {
    margin-right: 16.66666667%;
  }
  .offset-md-right-1 {
    margin-right: 8.33333333%;
  }
  .offset-md-right-0 {
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .offset-lg-right-12 {
    margin-right: 100%;
  }
  .offset-lg-right-11 {
    margin-right: 91.66666667%;
  }
  .offset-lg-right-10 {
    margin-right: 83.33333333%;
  }
  .offset-lg-right-9 {
    margin-right: 75%;
  }
  .offset-lg-right-8 {
    margin-right: 66.66666667%;
  }
  .offset-lg-right-7 {
    margin-right: 58.33333333%;
  }
  .offset-lg-right-6 {
    margin-right: 50%;
  }
  .offset-lg-right-5 {
    margin-right: 41.66666667%;
  }
  .offset-lg-right-4 {
    margin-right: 33.33333333%;
  }
  .offset-lg-right-3 {
    margin-right: 25%;
  }
  .offset-lg-right-2 {
    margin-right: 16.66666667%;
  }
  .offset-lg-right-1 {
    margin-right: 8.33333333%;
  }
  .offset-lg-right-0 {
    margin-right: 0;
  }
}
@media (min-width: 1200px) {
  .offset-xl-right-12 {
    margin-right: 100%;
  }
  .offset-xl-right-11 {
    margin-right: 91.66666667%;
  }
  .offset-xl-right-10 {
    margin-right: 83.33333333%;
  }
  .offset-xl-right-9 {
    margin-right: 75%;
  }
  .offset-xl-right-8 {
    margin-right: 66.66666667%;
  }
  .offset-xl-right-7 {
    margin-right: 58.33333333%;
  }
  .offset-xl-right-6 {
    margin-right: 50%;
  }
  .offset-xl-right-5 {
    margin-right: 41.66666667%;
  }
  .offset-xl-right-4 {
    margin-right: 33.33333333%;
  }
  .offset-xl-right-3 {
    margin-right: 25%;
  }
  .offset-xl-right-2 {
    margin-right: 16.66666667%;
  }
  .offset-xl-right-1 {
    margin-right: 8.33333333%;
  }
  .offset-xl-right-0 {
    margin-right: 0;
  }
}
Michael Stenberg
quelle
1

Sie müssen mehrere Klassen kombinieren ( col-*-offset-*für den linken Rand und col-*-pull-*um ihn nach rechts zu ziehen)

<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<div class="container">
  <div class="row">
    <div class="col-xs-3 col-xs-offset-9">
      I'm a right column
    </div>
    <div class="col-xs-3">
      We're
    </div>
    <div class="col-xs-3">
      four columns
    </div>
    <div class="col-xs-3">
      using the
    </div>
    <div class="col-xs-3">
      whole row
    </div>
    <div class="col-xs-3 col-xs-offset-9 col-xs-pull-9">
      I'm a left column
    </div>
    <div class="col-xs-3">
      We're
    </div>
    <div class="col-xs-3">
      four columns
    </div>
    <div class="col-xs-3">
      using the
    </div>
    <div class="col-xs-3">
      whole row
    </div>
  </div>
</div>

Sie müssen es also nicht manuell in verschiedene Zeilen unterteilen.

kpull1
quelle
0

Hier ist die gleiche Lösung wie bei Rukshan, jedoch in sass (um Ihre Gitterkonfiguration beizubehalten) für Sonderfälle, die nicht mit der Ross Allen-Lösung funktionieren (wenn Sie keine übergeordnete div.row haben können).

@mixin make-grid-offset-right($class) {
    @for $index from 0 through $grid-columns {
        .col-#{$class}-offset-right-#{$index} {
            margin-right: percentage(($index / $grid-columns));
        }
    }
}

@include make-grid-offset-right(xs);

@media (min-width: $screen-sm-min) {
  @include make-grid-offset-right(sm);
}

@media (min-width: $screen-md-min) {
  @include make-grid-offset-right(md);
}

@media (min-width: $screen-lg-min) {
  @include make-grid-offset-right(lg);
}
tchiot.ludo
quelle
0

<div class="row col-xs-12">            
            <nav class="col-xs-12 col-xs-offset-7" aria-label="Page navigation">
                <ul class="pagination mt-0">                   
                    <li class="page-item">                        
                        <div class="form-group">
                            <div class="input-group">
                                <input type="text" asp-for="search" class="form-control" placeholder="Search" aria-controls="order-listing" />

                                <div class="input-group-prepend bg-info">
                                    <input type="submit" value="Search" class="input-group-text bg-transparent">                                   
                                </div>
                            </div>
                        </div>
                    </li>
                   
                </ul>
            </nav>
        </div>

Prakash
quelle