介紹使網頁中的文字在底部居中顯示的方法。
工具 CSS
方法和步驟
1建立一個div:
<div >
</div>
2給該div命名,例如:master
3輸入要居中顯示的文字,例如:©2017 HZW
©2017 HZW
4新增style標籤
<style type="text/css" >
</style>5在標籤中新增樣式:
#master {
position:absolute;
left:50%;
bottom:0;
text-align :center;
}
</style>
6設定成功
介紹使網頁中的文字在底部居中顯示的方法。
工具 CSS
方法和步驟
1建立一個div:
<div >
</div>
2給該div命名,例如:master
<div >
</div>
3輸入要居中顯示的文字,例如:©2017 HZW
<div >
©2017 HZW
</div>
4新增style標籤
<style type="text/css" >
</style>5在標籤中新增樣式:
<style type="text/css" >
#master {
position:absolute;
left:50%;
bottom:0;
text-align :center;
}
</style>
6設定成功