如何使这个div容器更宽?

时间:2018-01-24 22:57:51

标签: css

我知道很少css。我试图让徽标更宽,但我无法做到。我认为这是因为它在其他div容器中更小。我怎样才能实现它?非常感谢你。 链接:http://rotvajler.greatsystemdesign.com/

1 个答案:

答案 0 :(得分:-1)

添加此CSS以允许图像达到与其高度正确比例的宽度:

.logo-block .logo {
    width: auto !important;
    max-width: none !important;
}

这将覆盖限制图像宽度的媒体查询中的所有其他规则。