html语言图片对齐方式的设置

使用<img>标签使图片左对齐或右对齐

<img src="D:\games\Wesnoth\editor.ico" align="left">
<br><br><br>
<img src="D:\games\Wesnoth\editor.ico" align="right">

在这里插入图片描述
使用<div>标签实现左对齐,右对齐,居中对齐

<div style="text-align:left"><img src="D:\games\Wesnoth\editor.ico"/></div>
<div style="text-align:right"><img src="D:\games\Wesnoth\editor.ico"/></div>
<div style="text-align:center"><img src="D:\games\Wesnoth\editor.ico"/></div>

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/m0_60352504/article/details/120191525