我想让一个图片在一个新打开的页面居中,
<div id="iframeDiv" style=" left:50%; margin:0 0 0 0; position:absolute; top:50%;" >
<img src="<%=basePath %>${request.fileSRC}">
</div>
这个不能完全满足
------解决方案--------------------
试试这个:
<style>
html,body{ margin: 0; padding: 0; height: 100%; }
body{ position: relative; }
.msg{ position: absolute; left: 50%; top: 50%; width: 400px; height: 400px; margin: -200px 0 0 -200px; }
.msg img{ display: block; }
</style>