We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7a4c42 commit f9d9b4aCopy full SHA for f9d9b4a
README.md
@@ -9,9 +9,16 @@ Select applicable elements with jQuery and pass an amount:
9
10
`$("#content p").minLineHeight(1.3)`
11
12
-The minimum line height can be supplied in the following ways:
+The minimum line height can be supplied in the following ways -
13
14
-`$("#content p").minLineHeight(1.3)` or `$("#content p").minLineHeight("1.3rem")` or `$("#content p").minLineHeight("13px")`
+A float:
15
+`$("#content p").minLineHeight(1.3)`
16
+
17
+As ems:
18
+`$("#content p").minLineHeight("1.3rem")`
19
20
+As px:
21
+`$("#content p").minLineHeight("13px")`
22
23
If the amount is passed as a float or any units other than px, the script will default to ems.
24
0 commit comments