hey guys, How could you narrow the space between paragraph and paragraph?
I am not finding options, thank you
This is likely caused by the fact that in HTML a paragraph element has extra margin below it. The easiest way to resolve that is by adding a CSS rule to context_all_styles.css to set the value of the margin-bottom property to 0 (zero). The context_all_styles.css file is located in the Stylesheets folder of the Resources panel.
Try adding the following to the stylesheet mentioned above:
p {
margin-bottom: 0;
}
Erik
hi erik, i resolved this problem with
Tag{
line-height
}
tanks