CSS阻止引用空行

时间:2016-08-24 01:12:23

标签: php html css blockquote

CSS块引用不要在qoute

中添加空行

示例:

<blockquote>
this is number 1

this is number  2
</blockquote>

这将显示如下,但"" > ""不显示,只显示空行

> this is number 1

>

> this is number 2

我希望他们将空行包含在blockquote中。

1 个答案:

答案 0 :(得分:3)

.stefmap:hover + .superheroheader img{ visibility:hidden;} .stefmap:hover + .superheroheader { background-image:url(wp-content/uploads/2016/08/Testheadersuperhero2hover.jpg); background-size:cover;} 是HTML中的保留字符。它用于构建标签。

您需要将其转义,否则浏览器会认为它的代码而不显示它。

>使用&lt;<使用&gt;

&#13;
&#13;
>
&#13;
&#13;
&#13;

来自规范:

  

5.3.2 Character entity references

     

四个字符实体引用值得特别提及,因为它们   经常被用来逃避特殊字符:

     
      
  • <blockquote> this is number 1<br> &gt;<br><!-- with "greater than" symbol --> this is number 2<br> </blockquote> <hr> <blockquote> this is number 1<br> <br><!-- with just an empty line --> this is number 2<br> </blockquote>代表&lt;标志。
  •   
  • <代表&gt;标志。
  •   
  • >代表&amp;标志。
  •   
  • &代表&quot;标记。
  •   
     

希望将"字符放入文字的作者应使用<   (ASCII十进制60)以避免可能与a的开头混淆   tag(开始标记打开分隔符)。同样,作者应该使用&lt;   (ASCII十进制62)在文本而不是&gt;,以避免旧版本的问题   用户代理错误地将其视为标记的结尾(标记   当它出现在引用的属性值中时,它将关闭分隔符。