Πλάτος - CSS-Κόλπα

Anonim

Η widthιδιότητα στο CSS καθορίζει το πλάτος της περιοχής περιεχομένου του στοιχείου. Αυτή η περιοχή «περιεχομένου» είναι το τμήμα μέσα στο παραγέμισμα, το περίγραμμα και το περιθώριο ενός στοιχείου (το μοντέλο κουτιού).

.element ( width: 80%; )

Στο παραπάνω παράδειγμα, τα στοιχεία που έχουν όνομα κλάσης .wrapθα είναι 80% πλάτος από το γονικό τους στοιχείο. Οι αποδεκτές τιμές είναι οποιαδήποτε από τις τιμές μήκους, εκτός από ορισμένες λέξεις-κλειδιά που θα καλύψουμε αργότερα.

Το πλάτος μπορεί να αντικατασταθεί από τις στενά συσχετισμένες ιδιότητες ελάχιστο πλάτος και μέγιστο πλάτος.

.wrapper-1 ( width: 100%; max-width: 320px; /* Will be AT MOST 320px wide */ ) .wrapper-2 ( width: 100%; min-width: 20em; /* Will be AT LEAST 20em wide */ )

Σκάβοντας βαθύτερα

Κατά τη χρήση ποσοστού (%) για πλάτος, οι συγγραφείς πρέπει να γνωρίζουν ότι το ποσοστό βασίζεται στο γονικό στοιχείο, ή με άλλα λόγια, το πλάτος του μπλοκ που περιέχει. Εάν ο γονέας σας έχει οριστεί στα 480 εικονοστοιχεία - όπως αποδεικνύεται από την επίδειξη μας - τότε το ποσοστό βασίζεται σε αυτήν την τιμή. Έτσι, στην περίπτωσή μας, το 50% των 480 εικονοστοιχείων μας αφήνει 240 εικονοστοιχεία ως υπολογισμένη τιμή εικονοστοιχείων.

Σημειώστε ότι widthισχύει για όλα τα στοιχεία εκτός από στοιχεία που δεν έχουν αντικατασταθεί ή ενσωματωμένα, σειρές πίνακα και ομάδες γραμμών (π.χ. thead, tfootκαι tbody). Φαίνεται να υπάρχει μια μικρή αναντιστοιχία όσον αφορά τον τρόπο με τον οποίο ο HTML ορίζει τα στοιχεία που δεν έχουν αντικατασταθεί και τον τρόπο με τον οποίο το ορίζει το CSS, αλλά το αναφερόμαστε με τον τρόπο που κάνει το CSS: στοιχεία των οποίων το περιεχόμενο δεν καθορίζεται από την ίδια την ετικέτα, όπωςCodePen Embed Fallback

Keyword values

With some special keyword values, it is possible to define width (and/or height) according to the content of the element.

min-content

The min-content value is the smallest measure that would fit around its content if all soft wrap opportunities within the box were taken.

The best example for this kind of value is a properly written figure element:

What a lovely kitten we got there in this image which is encapsulated in a figure element. How dear, look how long this caption is!

Once we have applied some basic styles to this markup, we get:

If we wanted that figure element to essentially be the size of that image, so the text wraps at the edges of the image. We could float it left or right, because float will exhibit that same kind of shrink-to-fit behavior, but what if we wanted to center it? min-content allows us to center it:

Because we’ve assigned min-content to the figure element, it takes the minimum width it can have when taking all soft wrap opportunities (like spaces between words) so that the content still fits in the box.

max-content

The max-content property refers to the narrowest measure a box could take while fitting around its content - if no soft wrap opportunities within the element were taken.

Check out what happens if we apply this to our simple kitten/figure demo:

Because the caption is very longer than the image is wide (it doesn’t take any soft wrap opportunity, like the spaces between words), it means it has to display the caption on a single line, thus the figure is as wide as that line.

fill-available

???. One of life’s great mysteries.

fit-content

The fit-content value is roughly equivalent to margin-left: auto and margin-right: auto in behaviour, except it works for unknown widths.

For instance, let’s say we need to center an inline navigation across the page. Your best bet would be to apply text-align: center to the ul, and display: inline-block to the li. This would give you something like this:

However, the blue background (from the ul element) spreads across the entire document because the ul is a block-level element, which means its width is restricted only by its containing element. What if we want to have the blue background collapsing around the list items? fit-content to the rescue!

With fit-content and margin: 1em auto, this works like a charm and only the navigation has a colored background, not the whole document width.

If you’re into this sort of thing, you’ll be happy to know the formula to define the size of a fit-content length is:

fit-content = min(max-content, max(min-content, fill-available))

This is a pretty unused value, so if you come up with a great use-case, let us know!

Browser support

IE Edge Firefox Chrome Safari Opera
All All All All All All
Android Chrome Android Firefox Android Browser iOS Safari Opera Mobile
All All All All All
Source: caniuse

Related properties

Almanac on Jan 15, 2021

height

.element ( height: 500px; ) layout width Sara Cope