H1 tag and P tag on the same line?

后端 未结 5 850
一个人的身影
一个人的身影 2020-12-17 09:25

I\'m trying to place some text inside the P tag after the closing H1 tag like this:

Headline And here are the text right after....

But I can

5条回答
  •  一个人的身影
    2020-12-17 10:05

    Change your CSS to something like this:

    p.start {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 28px;
    text-align: justify;
    width: 200px;
    float: left;
    }
    
    h1.start {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 28px;
    margin: 0;
    width: 200px;
    float: left;
    }
    

提交回复
热议问题