如何用純CSS實現(xiàn)文字描邊效果?
如何用純CSS實現(xiàn)文字描邊效果?
慕運維8079593
2019-05-14 12:08:56
TA貢獻1810條經(jīng)驗 獲得超4個贊
兩個方法:
一個直接寫CSS但不兼容IE6-8的text-shadow;
一個是全兼容但是需要兩個文字層的:
<div style="position:relative; width:200px; height:25px; line-height:25px; text-align:center; font-size:14px; color:#fff; background:#9c0;">
這是描邊文字<span style="position:absolute; left:-1px; top:-1px; color:#444;width:200px; height:25px; display:block">這是描邊文字</span>
</div>
舉報