Remove line break HTML -
i'm wondering how remove line break in html. example code have 2 hello worlds on top of each other. i'm sorry if i'm not enough @ programming in site.
<p>hello world</p> <p>hello world</p>
you've got few options:
p { display: inline-block; } or:
p { display: inline; } if it's white-space between bottom of first p , top of second p want remove:
p { /* top right bottom left */ margin: 0 0 0 0; }
Comments
Post a Comment