【问题标题】:Foundation 5 full-width header image [closed]Foundation 5全角标题图像[关闭]
【发布时间】:2014-10-03 09:25:20
【问题描述】:

我在my homepage有问题

你能帮帮我吗?在非常大的屏幕上,它显示我的标题图像左浮动。

<div class="row fullWidth">
<img src="img/header.jpg" alt="header-picture"></div>

CSS:

.fullWidth{width: 100%;margin-left: auto;margin-right: auto;max-width: initial;}

【问题讨论】:

    标签: css image header width zurb-foundation


    【解决方案1】:

    您的意思是图像在宽屏显示器上左对齐。 您希望它居中还是全角覆盖?

    然后添加:

    .fullwidth img {
        display: block;
        width: 100%; /* just add width in case you want the image covering full-width */
        margin: 0 auto;
    }
    

    到您的样式表。

    【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2022-06-13
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多