我有一个充满图像的flexbox,它们都有顶部的文字。我坚持试图让文本反应灵敏。文本需要保留在div内部并随图像调整大小。任何人都有任何关于如何最好地完成这个的提示或技巧?我的完整代码示例链接如下。
<div class="container">
<div class="flex-row row">
<div class="flex-column">
<div class=" welcome overlay-parent">
<img src="http://placehold.it/548x227">
<div class="overlay-text"><h1>Welcome to My Place</h1></div>
</div>
<div><img src="http://placehold.it/548x459"></div>
</div>
<div class="flex-column">
<div class="flex-row">
<div><img src="http://placehold.it/812x459"></div>
</div>
<div class="flex-row">
<div class="feature-about overlay-parent">
<img src="http://placehold.it/406x227">
<div class="overlay-text"><h2>About Something</h2>
<p>It’s the latest lorem ipsum dolor sit brief intro to the park goes here. ounded in 2016. It’s the latest lorem ipsum dolor sit brief intro to the park goes here. </p> </div>
</div>
<div><img src="http://placehold.it/406x227"></div>
</div>
</div>
</div>
<div class="flex-row row">
<div><img src="http://placehold.it/812x459"></div>
<div><img src="http://placehold.it/548x459"></div>
</div>
</div>
答案 0 :(得分:2)
您可以使用视口单元。这些将随着视口的大小调整而缩放。
$(document).foundation();
*{box-sizing: border-box;}
:root {font-size: calc(1vw + .1vmin);}
.container{
max-width: 1360px;
margin: 0 auto;
}
img{
border:2px solid white;
}
.flex-row {
justify-content: flex-start;
align-items: flex-start;
width: 100%;
display: flex;
flex-direction: row;
}
.flex-column{
align-items: flex-start;
height: 100%;
max-width: 1360px;
display: flex;
flex-direction: column;
}
.overlay-parent {
position: relative;
}
.overlay-text {
position: absolute;
left: 0;
top: 0;
width: 100%;
}
.welcome h1 {
padding: 20px 0 0 25px;
line-height: .8em;
font-size: 5em;
}
.feature-about h2, p {
padding: 0 5px 0 20px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/foundation/6.2.4/foundation.min.js"></script>
<div class="container">
<div class="flex-row row">
<div class="flex-column">
<div class=" welcome overlay-parent">
<img src="http://placehold.it/548x227">
<div class="overlay-text"><h1>Welcome to My Place</h1></div>
</div>
<div><img src="http://placehold.it/548x459"></div>
</div>
<div class="flex-column">
<div class="flex-row">
<div><img src="http://placehold.it/812x459"></div>
</div>
<div class="flex-row">
<div class="feature-about overlay-parent">
<img src="http://placehold.it/406x227">
<div class="overlay-text"><h2>About Something</h2>
<p>It’s the latest lorem ipsum dolor sit brief intro to the park goes here. ounded in 2016. It’s the latest lorem ipsum dolor sit brief intro to the park goes here. </p> </div>
</div>
<div><img src="http://placehold.it/406x227"></div>
</div>
</div>
</div>
<div class="flex-row row">
<div><img src="http://placehold.it/812x459"></div>
<div><img src="http://placehold.it/548x459"></div>
</div>
</div>
答案 1 :(得分:0)
您可以尝试根据视口的宽度定义字体大小。例如,尝试在font-size: 5vw
上设置H1
。