使图像全宽 - Wordpress HTML / CSS

时间:2015-07-10 21:17:54

标签: html css wordpress

所以我的容器是1230px,图像是1250px但是当我添加它时仍然显示为1210px。

http://insightcxo.com/test-2/

5 个答案:

答案 0 :(得分:1)

将填充应用于td标记。为你的css添加一个padding: 0;规则,它将填充宽度。

答案 1 :(得分:1)

尝试添加到父填充:10px 0;

答案 2 :(得分:0)

这是因为你的容器(td)左右有10 px的填充。

答案 3 :(得分:0)

试试这个。

classname {
    padding: 0x;
}

答案 4 :(得分:0)

变化:

@media (min-width: 1200px)
.container, 
.navbar-static-top .container, 
.navbar-fixed-top .container, 
.navbar-fixed-bottom .container {
  width: 1170px;
}

要:

@media (min-width: 1200px)
.container, 
.navbar-static-top .container, 
.navbar-fixed-top .container, 
.navbar-fixed-bottom .container {
  width: auto;
}