значения свойства:
.a {
line-height
:
normal
;
}
.a { line-height: normal; }
<!DOCTYPE html>
<
html
>
head
meta
charset
=
"utf-8"
/>
title
>New Page</
link
href
"css/style.css"
rel
"stylesheet"
script
type
"text/javascript"
src
"https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"
></
</
body
p
class
"a"
>Hello World!<
br
/>To be or not to be?</
hr
id
"p1"
"p2"
"p3"
/*JavaScript*/
document.getElementById("p1").style.lineHeight = "3";
/*jQuery*/
$(document).ready(function () {
$("#p2").css({ "line-height": "10px" });
$("#p3").css({ "line-height": "150%" });
});