當瀏覽器縮小或在移動設備上時,我的文本出現問題。 Here is a screenshot to help explain.在較大的屏幕上,'匹配'文本和'what'是一樣的,所以沒有問題。以下是我現在使用的代碼。我希望差距與下面的'匹配'相同。提前致謝。當瀏覽器縮小時出現無空行的文本
HTML
<div class="outer-wrapper">
<img class="aligncenter wp-image-1015"
src="https://www.thesurebettor.com/wp-content/uploads/2017/05/what-is-
matched-betting-1.jpg" alt="" width="750" height="431" />
<div class="text-wrapper"><p>What is matched</p><p>betting?</P>
</div>
</div>
CSS
.aligncenter {
display: block;
margin: auto;
max-width: 100%;
height: auto;
}
.outer-wrapper {
position: relative;
}
.text-wrapper {
position: absolute;
left: 50%;
top: 35px;
transform: translateX(-90%);
color: white;
font-size: 52px;
font-weight: bold;
}