I want to divide (Seperate) each paragraph in This post, what css to use?

You will need to do what Ron said above but you will also need to find a parent element that has a unique class on this page only (we can’t help you there as we don’t know what is unique to that page).

If there is no classname that you can use then you would need to add your own class to the parent wrapper (or the body element and then use that class).

e.g.

.mypage h1,
.mypage h2 {
    margin-bottom: -0.5em;  /* delete me */
}

mypage would be the class that you added to that page only on a parent element (preferably the body tag).

2 Likes