@copyright
Teaser
Teasertext Mehr
Das auf Bootstrap v2 basierte Gridsystem ist in den Funktionen reduziert. Einfache row
span
Gebilde sind hier möglich. Für mehr Informationen siehe Bootstrap v2 default grid system.
@copyright
Teasertext Mehr
@copyright
Teasertext Mehr
@copyright
Teasertext Mehr
<div class="row ">
<div class="span4">
<!-- place content here --> </div>
<div class="span4">
<!-- place content here --> </div>
<div class="span4">
<!-- place content here --> </div>
</div>
Mithilfe des flexgrid
lassen sich Inhalte in bis zu vier Spalten darstellen. Das Flexgrid kann in Kombination mit nahezu allen Einheiten verwendet werden und ermöglicht so eine hohe Flexibilität.
Die Klassen grid--2
, grid--3
und grid--4
zusätzlich zur Klasse flexgrid
ermöglicht eine zwei-, drei- oder vierspaltige Darstellung.
.flexgrid.grid--2
<ul class="flexgrid grid--2">
<li>
Spalte 1: Philosophy is considered a science but it is difficult to say, when one has to compare with an ordinary science, for example biology, or chemistry. Philosophy is considered a science but it is difficult to say, when one has to compare with an ordinary science, for example biology, or chemistry. </li>
<li>
Spalte 2: Philosophy is considered a science but it is difficult to say, when one has to compare with an ordinary science, for example biology, or chemistry. </li>
</ul>
.flexgrid.grid--3
<ul class="flexgrid grid--3">
<li>
Spalte 1: Philosophy is considered a science but it is difficult to say, when one has to compare with an ordinary science, for example biology, or chemistry. </li>
<li>
Spalte 2: Philosophy is considered a science but it is difficult to say, when one has to compare with an ordinary science, for example biology, or chemistry. </li>
<li>
Spalte 3: Philosophy is considered a science but it is difficult to say, when one has to compare with an ordinary science, for example biology, or chemistry. </li>
</ul>
.flexgrid.grid--4
<ul class="flexgrid grid--4">
<li>
Spalte 1: Philosophy is considered a science but it is difficult to say, when one has to compare with an ordinary science, for example biology, or chemistry. </li>
<li>
Spalte 2: Philosophy is considered a science but it is difficult to say, when one has to compare with an ordinary science, for example biology, or chemistry. </li>
<li>
Spalte 3: Philosophy is considered a science but it is difficult to say, when one has to compare with an ordinary science, for example biology, or chemistry. </li>
<li>
Spalte 4: Philosophy is considered a science but it is difficult to say, when one has to compare with an ordinary science, for example biology, or chemistry. </li>
</ul>
Um eine Aufteilung der Spalten im Verhältnis ⅔ und ⅓ zu erhalten, benötigt die Elterneinheit die Klasse flexgrid grid--3
. Das Kind, welches die ⅔ einnehmen soll erhält dann die Klasse span2
.
<ul class="flexgrid grid--3">
<li class="span2">
<div class="panel--light">Spalte 1: Philosophy is considered a science but it is difficult to say, when one has to compare with an ordinary science, for example biology, or chemistry.</div> </li>
<li>
<div class="panel--light">Spalte 2: Philosophy is considered a science but it is difficult to say, when one has to compare with an ordinary science, for example biology, or chemistry.</div> </li>
</ul>
Sollen alle Einheiten im Flexgrid (Kind innerhalb jedes Flexgridelements) die gleiche Höhe haben, benötigt das flexgrid
zusätzlich die Klasse grid--stretch
. Dies ist insbesondere dann sinnvoll, wenn die Kindeinheiten einen gefärbten Hintergrund haben und dadurch bei gleicher Höhe harmonischer wirken.
<ul class="flexgrid grid--3 grid--stretch">
<li>
<div class="panel--heavy">Spalte 1: Philosophy is considered a science but it is difficult to say, when one has to compare with an ordinary science, for example biology, or chemistry.</div> </li>
<li>
<div class="panel--heavy">Spalte 2: Philosophy is considered a science but it is difficult to say, when one has to compare with an ordinary science, for example biology, or chemistry. Philosophy is considered a science but it is difficult to say, when one has to compare with an ordinary science, for example biology, or chemistry.</div> </li>
<li>
<div class="panel--heavy">Spalte 3: Philosophy is considered a science but it is difficult to say, when one has to compare with an ordinary science, for example biology, or chemistry.</div> </li>
</ul>