<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
Many of life's failures are people who did not realize how close they were to success when they gave up.
Thomas A. Edison
Random CSS Property

negative

When defining custom counter styles, the negative descriptor lets you alter the representations of negative counter values, by providing a way to specify symbols to be appended or prepended to the counter representation when the value is negative.
negative (@counter-style) css reference