Is there any way how to define in css to hide additional line that <p> produce?
Only way I find is to set in p - display: list-item;,but its not best solution.
ThanksWhy not display:inline?because I wish to remove only one reak line. Not bothYou'll want something like:
p { margin: 0; }
That gets rid of the space between paragraphs.OMG, its too easy :O)
thank you very much!!!!!!!!!!!
Only way I find is to set in p - display: list-item;,but its not best solution.
ThanksWhy not display:inline?because I wish to remove only one reak line. Not bothYou'll want something like:
p { margin: 0; }
That gets rid of the space between paragraphs.OMG, its too easy :O)
thank you very much!!!!!!!!!!!