帮助我使用页面的Jsp代码,该代码在登录到他的帐户时具有编辑用户详细信息的形式,页面必须在右上方具有用户图像,并且表单必须位于中心。 / p>
答案 0 :(得分:0)
以下应该做的伎俩
<div class="main" style="clear:both;float: left;width:100%;" >
<div class="topRight" style="width:100%;float: left;" align="right">
<img src="images/pic.jpg" height="30" width="auto"><p>Jane <a href="#">LogOut</a></p>
</div>
<div class="content" style="width:100%;float: left;" align="center">
<form>
<input type="text" name="un" placeholder="Name">
<input type="submit" value="Submit"><input type="reset" value="Reset">
</form>
</div>
</div>
如果要动态获取图像,只需将路径分配给String,然后将变量值设置为img标记中的src属性
<img src="<%=path%>" height="30" width="auto"><p>Jane <a href="#">LogOut</a></p>