<length-percentage>
Quick Summary for <length-percentage>
The <length-percentage> CSS data type represents a value that can be either a <length> or a <percentage>.
Code Usage for <length-percentage>
<p>You can use percentages and lengths in so many places.</p> 
More Details for <length-percentage>

<length-percentage>

The <length-percentage> CSS data type represents a value that can be either a <length> or a <percentage>.

Syntax

Refer to the documentation for <length> and <percentage> for details of the individual syntaxes allowed by this type.

Examples

length-percentage examples

The following simple example demonstrates several properties that use <length-percentage> values.

HTML
<p>You can use percentages and lengths in so many places.</p> 
CSS
p {   /* length-percentage examples */   width: 75%;   height: 200px;   margin: 3rem;   padding: 1%;   border-radius: 10px 10%;   font-size: 250%;   line-height: 1.5em;    /* length examples */   text-shadow: 1px 1px 1px red;   border: 5px solid red;   letter-spacing: 3px;    /* percentage example */   text-size-adjust: 20%; } 
Result

Use in calc()

Where a <length-percentage> is specified as an allowable type, this means that the percentage resolves to a length and therefore can be used in a calc() expression. Therefore, all of the following values are acceptable for width:

width: 200px; width: 20%; width: calc(100% - 200px); 

Specifications

Specification
CSS Values and Units Module Level 5 # mixed-percentages

See also

<percentage> <length> CSS Values and Units

Last modified: Nov 21, 2021, by MDN contributors

No Items Found.

Add Comment
Type in a Nick Name here
 
Other Categories in CSS
css
Search CSS
Search CSS by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

You could also follow me on twitter. I have a couple of youtube channels if you want to see some video related content. RuneScape 3, Minecraft and also a coding channel here Web Dev.

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
In this case my anchor this week becomes driving almost 2hrs outside of Atlanta to one of my favorite hard core gyms in the world.. MetroFlex aka The Dungeon. The gym owners turn the heat way up so it becomes a fun sweat box and the gym members just watch from afar and leave me alone. I happily drive myself long distances to find MY ANCHOR. Our anchor allows us to have balance, focus and be as productive as possible. And if you're in the middle of a heavy set and your headphones start to fall off your head, like mine did here.. well.. f*ck the headphones. Let em break and fall. You can always get a new pair, but the iron ain't ever gonna lift itself.
Unknown
Random CSS Property

animation-iteration-count

The animation-iteration-count CSS property sets the number of times an animation sequence should be played before stopping.
animation-iteration-count css reference