html - 如何在移动设备上的标题和价格标签之间添加边距

标签 html css

我想在移动设备上的标题和价格标签之间添加边距(分隔符 <br>)。网站是http://www.jokerleb.com .我试过了

.h3{
margin:5px;
}
// and

.tags{
margin:5px;
}

而且我还尝试处理其他 div 和媒体查询,但没有任何效果,似乎只是应用边距不会改变任何东西。我已经在这个 super 愚蠢的问题上工作了 2 天,但不知道为什么它不起作用。

enter image description here

最佳答案

只需像下面这样添加媒体查询即可解决问题。

  @media (max-width:400px) {
       .tags {
        margin-bottom: 8px; /* Added */
        padding: 0;
        float: right;
        right: 24px;
        bottom: -12px;
    }
  }

关于html - 如何在移动设备上的标题和价格标签之间添加边距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45029707/

相关文章:

html - 背景图像 1px 偏移

javascript - 通过键盘的 slider 动画不起作用(javascript 和 CSS)

html - CSS/HTML - iPhone Web App,仅针对非 Retina

html - Chrome 背景图像在刷新时留下空白

html - 如何对齐最后一个按钮全宽的 bootstrap 3 按钮

html - AngularJS - Lodash html 大写用法

html - css property 属性不工作,因为它应该正常工作

html - 对齐文本和图标 CSS

php - 如何根据时间在 td 中定位 div 看起来像谷歌日历

javascript - scrollnav.js 小节不起作用