<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<htmlxmlns="http://www.w3.org/1999/xhtml">
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/>
<title>無標題文檔</title>
<style>
.main{vertical-align:middle}
</style>
</head>
<body>
<divclass="main">
我是和圖片居中對齊滴。<imgsrc="file:///C|/Users/Administrator/Desktop/QQ圖片20150403172529.png"style="vertical-align:middle"width="276"height="267"/>
</div>
</body>
</html>
② 文字和圖片居中的HTML代碼怎麼寫
我們直接對body 設置CSS樣式:text-align:center1、完整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>
③ html怎麼讓文字和圖片並排
同一個div中的圖片和文字一起左右居中的話div中的圖片設置display:block;margin:auto;然後給div設置text-align:center就好,記得給div設置寬度。想要垂直也居中就不給div設置高度,設置相等padding-top和padding-bottom就行
④ 怎麼讓文字對准圖片的中間呀 (這是html)怎麼用css
需要准備的材料分別有:電腦、瀏覽器、html編輯器。
1、首先,打開html編輯器,新建html文件,例如:index.html,填充問題基礎代碼。
⑤ html中文字怎麼顯示到圖片的中正中間
方案一:文字浮動定位到圖片上
<divclass="img_wd">
<divclass="c_img"><imgsrc="test.jpg"width="100px"height="100px"/></div>
<divclass="c_words">測試文字</div>
</div>
<style>
.c_img{position:relative;}
.c_words{position:absolute;top:35px;height:30px;line-height:30px;}
</style>
如要文字居中顯示:top值=(圖片高度-文本div高度)/2
如需要求水平居中:left=(圖片寬度-文本div寬度)/2
方案二:用圖片做文字圖層背景
<divclass="img_wd">測試文字</div>
<style>
.img_wd{
background:url(test.jpg)topcenterno-repeat;
width:100px;height:100px;line-heiht:100px;
text-align:center;}
</style>