Skaitļi
Dokumentācija un piemēri saistīto attēlu un teksta parādīšanai ar figūras komponentu programmā Bootstrap.
Ikreiz, kad nepieciešams parādīt satura daļu, piemēram, attēlu ar neobligātu parakstu, apsveriet iespēju izmantot <figure>
.
Izmantojiet iekļautās .figure
, .figure-img
un .figure-caption
klases, lai nodrošinātu dažus bāzes stilus HTML5 <figure>
un <figcaption>
elementiem. Attēliem attēlos nav precīza izmēra, tāpēc noteikti pievienojiet .img-fluid
klasi savai klasei, lai <img>
tā būtu atsaucīga.
<figure class="figure">
<img src="..." class="figure-img img-fluid rounded" alt="A generic square placeholder image with rounded corners in a figure.">
<figcaption class="figure-caption">A caption for the above image.</figcaption>
</figure>
Attēla parakstu līdzināšana ir vienkārša, izmantojot mūsu teksta utilītas .
<figure class="figure">
<img src="..." class="figure-img img-fluid rounded" alt="A generic square placeholder image with rounded corners in a figure.">
<figcaption class="figure-caption text-right">A caption for the above image.</figcaption>
</figure>