亚洲精品久久久久久第一页-人妻少妇精彩视品一区二区三区-91国产自拍免费视频-免费一级a在线播放视频正片-少妇天天日天天射天天爽-国产大屁股喷水视频在线观看-操美女骚穴抽插性爱视频-亚洲 欧美 中文字幕 丝袜-成人免费无码片在线观看

css設(shè)置字體上下居中 css字體居中對齊怎么做

水平居中對齊在頁面布局中是最為常見的一種布局方式,標題出現(xiàn)較多;下面我們看看常見的四種水平居中對齊方式:
1、 使用margin:0 auto; 進行布局
<style> .content{ width:100px; height:100px; margin:0 auto; background-color:red; }</style><div class="content"></div>2、使用絕對定位布局
<style> .parent{ width:400px; height:200px; border:1px solid #000; position:relative; } .child{ width:100px; height:100px; background-color:red; position:absolute; left:50%; margin-left:-50px; //50為容器寬度的一半 }</style><div class="parent"> <div class="child"></div></div>3、使用text-align:center;和inline-block進行布局
【css設(shè)置字體上下居中 css字體居中對齊怎么做】<style> .parent{ width:400px; height:200px; border:1px solid #000; text-align:center; } .child{ width:100px; height:100px; background-color:red; display:inline-block; }</style><div class="parent"> <div class="child"></div></div>4、使用table進行布局
<style> .parent{ width:400px; height:200px; border:1px solid #000; } .child{ background-color:red; display:table; margin:0 auto; }</style><div class="parent"> <div class="child"></div></div>


    以上關(guān)于本文的內(nèi)容,僅作參考!溫馨提示:如遇健康、疾病相關(guān)的問題,請您及時就醫(yī)或請專業(yè)人士給予相關(guān)指導!

    「愛刨根生活網(wǎng)」www.malaban59.cn小編還為您精選了以下內(nèi)容,希望對您有所幫助: