使用盒佈局的時候,可使用 box-pack 屬性及box-align屬性來指定元素中文字、圖像及子元素水平方向或垂直方向的對齊方式。html
讓元素設置爲盒佈局,而後使用這兩個屬性就行web
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <title></title> <style> div{ width: 1080px; height: 1000px; font-size: 16px; color: #3b4653; border:1px solid #e33030; display: -moz-box;/*設置元素爲盒佈局*/ display: -webkit-box; -moz-box-align: center;/*垂直居中*/ -webkit-box-align: center; -moz-box-pack: center;/*水平居中*/ -webkit-box-pack: center; } </style> </head> <body> <div> <img src="images/hua.png" alt=""> </div> </body> </html>