line-height-step
Quick Summary for line-height-step
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
Code Usage for line-height-step
/* Point values */ line-height-step: 18pt;  /* Global values */ line-height-step: inherit; line-height-step: initial; line-height-step: revert; line-height-step: unset; 
More Details for line-height-step

line-height-step

Experimental: This is an experimental technologyCheck the Browser compatibility table carefully before using this in production.

The line-height-step CSS property sets the step unit for line box heights. When the property is set, line box heights are rounded up to the closest multiple of the unit.

/* Point values */ line-height-step: 18pt;  /* Global values */ line-height-step: inherit; line-height-step: initial; line-height-step: revert; line-height-step: unset; 

Syntax

The line-height-step property is specified as any one of the following:

a <length>.

Values

<length>

The specified <length> is used in the calculation of the line box height step.

Formal definition

Initial value0
Applies toblock containers
Inheritedyes
Computed valueabsolute <length>
Animation typediscrete

Formal syntax

<length>

Examples

Setting step unit for line box height

In the following example, the height of line box in each paragraph is rounded up to the step unit. The line box in <h1> does not fit into one step unit and thus occupies two, but it is still centered within the two step unit.

:root {   font-size: 12pt;   --my-grid: 18pt;   line-height-step: var(--my-grid); } h1 {   font-size: 20pt;   margin-top: calc(2 * var(--my-grid)); } 

The result of these rules is shown below in the following screenshot:

Specifications

Specification
CSS Rhythmic Sizing # line-height-step

See also

font font-size line-height

Last modified: Sep 8, 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

Do you want to be right or happy? You can’t be both.

Suggests that in many situations - especially in relationships or arguments - insisting on being right can come at the cost of harmony or peace of mind. It implies that prioritizing your ego or the need to win an argument may damage relationships or personal contentment, whereas letting go of that need (even if you’re technically right) may lead to greater happiness.


Gerald Jampolsky
Random CSS Property

url()

The url() CSS function is used to include a file. The parameter is an absolute URL, a relative URL, a blob URL, or a data URL. The url() function can be passed as a parameter of another CSS functions, like the attr() function. Depending on the property for which it is a value, the resource sought can be an image, font, or a stylesheet. The url() functional notation is the value for the <url> data type.
url() css reference