Hi, cannot manage to customs spacing with css for example, i'd like to set the spacing I want between the paragraphs or divs of my text, or the tables spacing. thank you
For paragraphs, you can assign margin to the p elements: p { margin-bottom: 10px; } Code (markup): This creates a space of 10px under every p element.
I alwas try to keep the margins around a div or p same, rather then setting individual margins, like this p { margin: 10px; } Otherwise I find you set the top bottom left and right differently and you can never get your page to balance up. Also look up the CSS box model that should shed some light on the subject.