我有一个自定义构建的CMS,内容在WYSIWYG编辑器中看起来很好,但在网站前端有额外的br标签,不应该在那里,我想知道我是否可以使用CSS隐藏它们(那里是一个master.css文件)
以下是问题的一个示例 - 请注意每行末尾的br标记
<div class="column threequarter">
<h3>I need to hide the break tag at the end of this line and the following line</em></strong> </p><br />
<p> </p><br />
<h4>I need to hide the break tag at the end of this line</h4><br />
<p>I also need to hide the break tag at the end of this line.</p><br />
麻烦的是,我不想在整个网站上隐藏所有br标签,但是如果我可以将它们隐藏在当时那可能就足够了。
答案 0 :(得分:1)
正如链接https://www.w3schools.com/tags/tag_br.asp中的HTML文档所述, <br/>
标记还支持HTML中的全局属性。您只需设置一个所需<br/>
标记的类,然后为这些特定元素设置display:none;
。这是一个例子,
HTML:
<br class="mystyle" />
CSS:
.mystyle{
display:none;
}