html怎么讓圖片居中
1、首先我們需要新建一個html頁面。
2、然后在body部分新建一個img標簽,并指定一張圖片。
3、在瀏覽器中查看效果,可以發(fā)現(xiàn)圖片是默認左對齊的,并沒有在正中央顯示。
4、將圖片套在一個p或者span標簽中,給標簽添加一個值為text-align:center的style屬性即可。
推薦學習:html教程
代碼如下:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <p style="text-align: center;"> <img src="a.png" alt=""> </p> </body> </html>