in English
צבע ורקע
הגדר צבע רקע עם צבע קדמי מנוגד.
בעמוד זה
סקירה כללית
נוסף בגרסה 5.2.0עוזרי צבע ורקע משלבים את העוצמה של כלי השירות .text-*
והשירותים שלנו במחלקה אחת. באמצעות פונקציית Sass שלנו , אנו קובעים באופן אוטומטי ניגודיות עבור ..bg-*
color-contrast()
color
background-color
שימו לב! כרגע אין תמיכה
color-contrast
בפונקציה מקורית של CSS, אז אנחנו משתמשים בפונקציה שלנו דרך Sass. משמעות הדבר היא שהתאמה אישית של צבעי הנושא שלנו באמצעות משתני CSS עלולה לגרום לבעיות ניגודיות צבע בכלי שירות אלה.
ראשוני עם צבע מנוגד
משני עם צבע מנוגד
הצלחה עם צבע מנוגד
סכנה עם צבע מנוגד
אזהרה עם צבע מנוגד
מידע עם צבע מנוגד
אור עם צבע מנוגד
כהה עם צבע מנוגד
<div class="text-bg-primary p-3">Primary with contrasting color</div>
<div class="text-bg-secondary p-3">Secondary with contrasting color</div>
<div class="text-bg-success p-3">Success with contrasting color</div>
<div class="text-bg-danger p-3">Danger with contrasting color</div>
<div class="text-bg-warning p-3">Warning with contrasting color</div>
<div class="text-bg-info p-3">Info with contrasting color</div>
<div class="text-bg-light p-3">Light with contrasting color</div>
<div class="text-bg-dark p-3">Dark with contrasting color</div>
עם רכיבים
השתמש בהם במקום משולבים .text-*
ושיעורים .bg-*
, כמו בתגים :
יְסוֹדִי
מידע
<span class="badge text-bg-primary">Primary</span>
<span class="badge text-bg-info">Info</span>
או בכרטיסים :
כּוֹתֶרֶת
טקסט דוגמה מהיר לבניית כותרת הכרטיס ולהוות את עיקר התוכן של הכרטיס.
כּוֹתֶרֶת
טקסט דוגמה מהיר לבניית כותרת הכרטיס ולהוות את עיקר התוכן של הכרטיס.
<div class="card text-bg-primary mb-3" style="max-width: 18rem;">
<div class="card-header">Header</div>
<div class="card-body">
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
<div class="card text-bg-info mb-3" style="max-width: 18rem;">
<div class="card-header">Header</div>
<div class="card-body">
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>