0

我在我的英雄图像上放置了几个标题标签。当我调整浏览器大小时,文本叠加层会上下移动。关于如何将文本固定在英雄图像中间的任何想法?

html:

    <!--Hero-->
<div id="heroimage">
    <div class="row">
        <div class="small-12 small-centered columns">
            <br>
            <div class="heroText">
                <h1>Adolfo Barreto</h1>
                <h4>Web Designer</h4>
            </div>
        </div>
    </div>  
</div>

CSS:

    // Hero
 html, body, #heroimage{
   width:100%;
   height:100%;
 }

.heroText {

    text-align: center;
    color: white;
    margin-top: 50%;
    margin-bottom: 50%;
}

#heroimage{   

  background: url('/../assets/img/codeHero.0.jpg') center center; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

我的网站地址是:http ://adolfobarreto.atwebpages.com

4

5 回答 5

2
.heroText {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
于 2016-01-12T09:37:13.420 回答
1

heroText将类 css调整为

.heroText {
text-align: center;
color: white;
margin-top: 10%;
margin-bottom: 50%;

}

于 2016-01-12T09:36:09.947 回答
1

希望这可以帮助你:

根据您的查询,我已经对其进行了测试并尝试编写代码,以便对您有所帮助。

我所做的是:

到您的“small-12 small-centered columns” DIV;我给了它一个属性作为位置:相对;

另一个“heroText”我将其属性设为宽度:100%;margin-top:28%;; 这样这将修复您的文本,并且可以在任何类型的浏览器和设备中查看。

我在我的桌面上试过,它工作得很好。

<html>
<head>
    <title></title>
    <style type="text/css">
        .small-centered {
            /* Set the position only */
            position: relative;
        }
        .heroText {
            text-align: center;
            color: white;
            /* Added two lines only */
            width: 100%;
            margin-top: 28%;
        }
    </style>
</head>
    <body>
        <div id="heroimage">
        <div class="row">
            <div class="small-12 small-centered columns"> 
            <!-- Here in above given small-12 smaill-centered columns DIV , provide 1 CSS property that, " position: relative " that will set this div to its place to be aligned in a line. -->
                <br>
                <div class="heroText">
                <!-- Here in above given heroText DIV , provide 2 CSS property that, " width: 100%, marngin-top:28%; " this will fix up this child div and will set your texts written. -->
                    <h1>Adolfo Barreto</h1>
                    <h4>Web Designer</h4>
                </div>
            </div>
        </div>  
    </div>
    </body>
</html>
于 2016-01-12T09:39:42.130 回答
1

我建议您为此使用显示表结构。

我认为您不需要如此复杂的结构,但保持原样:

.heroimage .row {
    display: table;
    height: 100%;
}

.heroimage .row .columns {
    display: table-cell;
    vertical-align: middle;
}

我会删除 de<br>并清理 .heroText 边距

于 2016-01-12T09:52:12.283 回答
0

这是解决方案:

#heroimage{
 position:relative;
 }
.heroText{
 position: absolute;
 top: 50%;
 width: 100%;
 }
于 2016-01-12T10:32:25.373 回答