Answers for "css paragraph spacing"

CSS
11

line spacing css

line-height: 20px; /* 4px +12px + 4px */
/* OR */
line-height: 1.7em; /* 1em = 12px in this case. 20/12 == 1.666666  */
Posted by: Guest on March-05-2020
2

line-height css

.green {
  line-height: 1.1;
  border: solid limegreen;
}

.red {
  line-height: 1.1em;
  border: solid red;
}

h1 {
  font-size: 30px;
}

.box {
  width: 18em;
  display: inline-block;
  vertical-align: top;
  font-size: 15px;
}
Posted by: Guest on March-18-2020
0

increase the distance between paragraphs css

p {
  margin-top: 2em ;
  margin-bottom: 2em ;
}
Posted by: Guest on December-30-2020
-1

adjust text spacing css

pre {
    line-height: 20px;
 }
Posted by: Guest on March-14-2021

Browse Popular Code Answers by Language