您好,登錄后才能下訂單哦!
css中怎么實現(xiàn)移動端圖片文字水平居中,相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。
solution 1:利用行內(nèi)元素的padding-left屬性。把圖片絕對定位到padding-left區(qū)域內(nèi),然后對外層div元素設(shè)置文字居中,對span元素設(shè)置line-height,讓文字垂直居中
<div class="container">
<span class="wrap">
<img src="pic-7.png" class="icon" alt="">
Username
</span>
</div>
CSS Code復(fù)制內(nèi)容到剪貼板
.container {
height: 10rem;
text-align: center;
background: #819121;
}
.wrap {
display: inline-block;
position: relative;
margin-top: 3rem;
padding-left: 3rem;
line-height: 2rem;
background: #BB9391;
}
.icon {
position: absolute;
left: 0;
top: 0;
height: 2rem;
}
效果圖:
solution 2:box布局居中,對div元素設(shè)置box-pack,span元素設(shè)置display: block,由于想偷懶,省略兼容模式寫法
<div class="container">
<img src="pic-7.png" class="icon" alt="">
<span class="username">Username</span>
/div>
CSS Code復(fù)制內(nèi)容到剪貼板
.container {
display: -webkit-box;
-webkit-box-pack: center;
height: 10rem;
background: #B2B2CD;
}
.icon {
margin-top: 2rem;
height: 2rem;
}
.username {
display: block;
margin-top: 2rem;
padding-left: 1rem;
line-height: 2rem;
}
效果圖:
看完上述內(nèi)容,你們掌握css中怎么實現(xiàn)移動端圖片文字水平居中的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。