文字和圖片居中的HTML程式碼怎麼寫?
阿新 • • 發佈:2019-02-13
HTML 程式碼 ,怎麼將文字/ 圖片居中?這是在W3Cschool的程式設計問答中前端♌蕾兒提出的問題。網友施主同西否給出了詳細的解答。
html文字居中和html圖片居中方法程式碼,通過在html中實現文字居中圖片居中篇在html中實現文字圖片內容居中有三種方法,其中兩種使用CSS樣式實現,一直使用原始的html標籤內加入“align="center"
”(居中)實現。
一、對body加CSS居中樣式
1、完整HTML例項程式碼:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<meta charset="gb2312" />
<title>W3Cschool居中例項</title>
<style>
body{text-align:center}
</style>
</head>
<body>
W3Cschool會被居中
</body>
</html>
2、居中例項截圖
對body設定居中實現文字或圖片居中截圖
二、對文字外層物件加css居中樣式
首先我們CSS命名選擇器 為“.w3cschool”,對此選擇器內加居中樣式。我們例項演示2個DIV物件,一個放文字一個放圖片。
1、對應CSS程式碼如下:
.w3cschool{text-align:center}
2、完整HTML+DIV+CSS程式碼如下:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="gb2312" />
<title>W3Cschool居中例項</title >
<style>
.w3cschool{text-align:center}
</style>
</head>
<body>
<div class="w3cschool">W3Cschool會被居中</div>
<div class="w3cschool">
![](http://upload-images.jianshu.io/upload_images/2642238-eba477a8a75edf90.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
</div>
</body>
</html>
3、CSS實現物件內圖片和文字居中效果截圖
實現html文字居中-html圖片居中例項截圖
三、之間對文字外層物件加align="center"
此方法是以前較為常見的方法,直接在html標籤內使用align="center"
即可實現物件內圖片或文字內容實現居中。我們例項演示HTML表格里居中與一般HTML標籤內內容居中。
1、完整HTML原始碼:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="gb2312" />
<title>html align居中-W3Cschool</title>
</head>
<body>
<div align="center">W3Cschool會居中的</div>
<table width="100%">
<tr>
<td align="center">表格中居中</td>
</tr>
</table>
</body>
</html>
2、例項效果截圖
html文字居中,html table 表格內文字居中實現截圖
直接在標籤內使用align屬性,方便實踐普通html標籤 和html表格標籤 內使用“align="center
“”居中程式碼實現物件內內容居中。