由于某些原因,我无法隐藏<br>标记,仅显示在小屏幕尺寸上。对于小屏幕不会显示。它适用于其他屏幕尺寸。它适用于其他标签。屏幕尺寸较小的<br>标签。

 <div class="row">
  <img src="static/works_3.jpg" class="img-responsive works-photo col-md-4 col-sm-12"><br class="hidden-xs hidden-md hidden-lg">
  <img src="static/works_3.jpg" class="img-responsive works-photo col-md-4 col-sm-12"><br class="hidden-xs hidden-md hidden-lg">
  <img src="static/works_3.jpg" class="img-responsive works-photo col-md-4 col-sm-12"><br class="hidden-xs hidden-md hidden-lg">
 </div>

最佳答案

<br>更改为<div class="hidden-xs hidden-md hidden-lg"></div>
它应该有所帮助

关于html - 无法在Bootstrap中隐藏<br>,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32856080/

10-16 21:20