<br>
不会让我内联显示 3 个按钮,所以我需要在 div 内禁用它,我不能只是删除它们,它们会自动存在。
我有:
<div style="display:block">
<p>Some text</p>
<br>
<p>Some text</p>
<br>
</div>
而且我要:
<div style="display:block">
Some text Some text
</div>
更多信息
我不想拥有 mystyle.css 文件。我当然知道禁用它的方法。
br { display: none; }
我问如果可能的话,如何将它添加到 div 样式中。
解决方案:
- 不可能只删除
<p>
标签而不删除里面的内容。 - 不能直接通过 divs 样式隐藏
<br>
,所以我是这样做的:
<style type="text/css"> .mydiv { display: block; width: 100%; height: 10px; } .mydiv br { display: none; } </style> <div class="mydiv"> Some text Some text </div>