문제

How do you make no spaces between top and bottom text... For example:

<p>Hi</p>
<p>Bye</p>

Like, how do you put no space in the middle of that? I could use a CSS of HTML code...

Thanks!

도움이 되었습니까?

해결책

There's a margin between the paragraphs. To get rid of it, you'll need to set the margin via CSS:

p {
    margin: 0;
}

To get "Hi" and "Bye" on the same line, you'd either change the display of p elements, or change the markup:

change display:
p {
    display: inline;
    //or
    display: inline-block;
}
change markup:
<p>Hi Bye</p>

다른 팁

How about:

<p>Hi<br/>
Bye</p>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top