如何使此图像响应页面大小而不移动文本

时间:2017-03-08 00:26:05

标签: css html5 twitter-bootstrap-3

所以我的页面在桌面上看起来很好,但当我通过任何其他设备(手机,平板电脑)查看它时,页面上的文字已经降低到其他内容。是否有办法使文本像图像一样缩小?

这是我的HTML:

<div class="hero">
        <img src="resources/assets/home_header.png" alt="youth futures header"/>
            <div class="text">
                <h1>Hi</h1>
                <p class="textstyle2">14 WARM BEDS. YOUTH 12-17.<br/>YOUR TEMPORARY HOME:)</p>
            </div>
    </div>

这是CSS:

.hero {
 width:1280px;
  margin:0rem auto;
  position: relative;
}

.text {
position: absolute;
top:50%;
left:0;
padding:1rem;
transform:translateY(-50%);
text-align:center !important;
margin: 0px 197px 103px 531px;
}

1 个答案:

答案 0 :(得分:0)

使用媒体查询来缩小小屏幕上的字体大小

https://www.w3schools.com/css/css_rwd_mediaqueries.asp