我使用浅黄色框在我的 HTML 页面上显示编程内容,类似于此页面。为了制作一个黄色框,我使用了一个<p>
带有特殊类的标签,并为该类添加了背景颜色以及font-family: "Courier New"
.
在同一个框内的行之间,我使用<br/>
标签来换行。现在的问题是,正如您在该链接中看到的那样,有时换行后应该有一些空间。但空间并没有出现在我面前。我怎样才能让它出现?
不要为此使用段落;使用pre
:
<pre>first line
second line; next line will be blank
fourth line</pre>
像示例一样使用<pre>
标签,而不是<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>