我正在使用淡黄色框在我的HTML页面上显示编程内容,类似于this page。要制作一个黄色方框,我使用带有特殊类的<p>
标记,对于该类,我使用背景颜色和font-family: "Courier New"
。
在同一个框内的行之间,我使用<br/>
标记来打破行。现在的问题是,正如你在链接中看到的那样,有时在换行后应该有一些空格。但这个空间并不适合我。如何让它出现?
答案 0 :(得分:3)
不要使用段落;使用pre
:
<pre>first line
second line; next line will be blank
fourth line</pre>
答案 1 :(得分:2)
使用<pre>
tag,例如,而不是<br/>
。
<pre>
<span class="ruby-comment"># File actionpack/lib/action_view/helpers/url_helper.rb, line 324</span>
<span class="ruby-keyword">def</span><span class="ruby-keyword ruby-title">button_to</span>(<span class="ruby-identifier">name</span>, <span class="ruby-identifier">options</span> = {}, <span class="ruby-identifier">html_options</span> = {}) <span class="ruby-identifier">html_options</span> = <span class="ruby-identifier">html_options</span>.<span class="ruby-identifier">stringify_keys</span>
...
<span class="ruby-node">"#{tag(:form, form_options, true)}<div>#{method_tag}#{tag("input", html_options)}#{request_token_tag}</div></form>"</span>.<span class="ruby-identifier">html_safe</span>
<span class="ruby-keyword">end</span>
</pre>