Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
267 views
in Technique[技术] by (71.8m points)

html - 如何从CSS换行而不使用 <br /> ?(How to line-break from css, without using <br />?)

output:

(输出:)

hello

(你好)
How are you

(你好吗)

code:

(码:)

<p>hello <br> How are you </p>

How to achieve same output without <br> ?

(没有<br>如何实现相同的输出?)

  ask by Jitendra Vyas translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Impossible with the same HTML structure, you must have something to distinguish between Hello and How are you .

(使用相同的HTML结构是不可能的,您必须有一些东西来区分HelloHow are you 。)

I suggest using span s that you will then display as blocks (just like a <div> actually).

(我建议使用span ,然后将其显示为块(实际上就像<div> )。)

HTML:

(HTML:)

<p><span>hello</span><span>How are you</span></p>

CSS:

(CSS:)

p span 
{
    display: block;
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...