<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...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

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
“If you just sit and observe, you will see how restless your mind is. If you try to calm it, it only makes it worse, but over time it does calm, and when it does, there’s room to hear more subtle things. You see so much more than you could see before. It’s a discipline; you have to practice it.”
Steve Jobs
Random CSS Property

break-inside

The break-inside CSS property sets how page, column, or region breaks should behave inside a generated box. If there is no generated box, the property is ignored.
break-inside css reference