在DW中插入图片,怎么样使图片像右边靠齐?
发布网友
发布时间:2022-04-28 22:49
我来回答
共3个回答
热心网友
时间:2022-06-24 14:36
你好,有3种方法都可以实现:
1,在DW里面的代码模式中在图片上写行内样式:style="float:right"
2,在DW里面的图片上鼠标右击,选择对齐->右对齐
3,在DW里面选择图片,在属性里面的对齐选择右对齐
热心网友
时间:2022-06-24 14:36
在DIV标签里加入:style="text-align:right;"
完整代码:
<DIV id=right style="text-align:right;">
<form name="form1" method="post" action="">
<label>
<input type="image" name="imageField" src="../QQ截图未命名.jpg">
</label>
</form>
</DIV>
热心网友
时间:2022-06-24 14:37
直接加一个float:right;
<DIV id=right style="float:right;">
<form name="form1" method="post" action="">
<label>
<input type="image" name="imageField" src="../QQ截图未命名.jpg">
</label>
</form>
</DIV>