【问题标题】:Extra space showing up next to content内容旁边显示额外的空间
【发布时间】:2016-02-20 13:19:04
【问题描述】:

http://stanleyjoseph.co/mct/artful-mix-2/ 是有问题的页面。

我尝试从 .styleparagraph 和 .styledescription 中删除填充,但这似乎没有任何作用。有经验的开发者能给我一些建议吗?

.styleparagraph {
padding: 0 15px;
}

.styledescription {
padding: 15px;
line-height: 2.5em;
}

【问题讨论】:

标签: html css wordpress slider padding


【解决方案1】:

你可以使用 overflow:hidden; CSS 属性来解决这个问题。

.styleparagraph {
padding: 0 15px;
overflow: hidden;
}

.styledescription {
padding: 15px;
line-height: 2.5em;
overflow: hidden;
}

这似乎可以解决您的问题。希望这能解决您的问题。

【讨论】:

  • 起初我认为这已经解决了问题,但我现在在移动设备上看到(或者如果你缩小浏览器)问题仍然存在。有什么建议吗?
猜你喜欢
  • 2011-11-08
  • 1970-01-01
  • 2011-07-10
  • 1970-01-01
  • 1970-01-01
  • 2019-07-15
  • 2010-12-22
  • 2019-08-16
  • 1970-01-01
相关资源
最近更新 更多