Tue Sep 21, 2010 9:12 am
<html>
<head>
<script>
window.onresize = center;
function center(){
var objwidth = document.getElementById('centered').offsetWidth;
var objheight = document.getElementById('centered').offsetHeight;
var screen_height = window.innerHeight;
var screen_width = window.innerWidth;
var centx = (screen_width/2) - (objwidth/2);
var centy = (screen_height/2) - (objheight/2);
document.getElementById('centered').style.position = "absolute";
document.getElementById('centered').style.top = centy;
document.getElementById('centered').style.left = centx;
}
</script>
</head>
<body onLoad="center();">
<table border="1" id="centered" height="250" width="375">
<tr><td>1</td><td>2</td></tr>
<tr><td>3</td><td>4</td></tr>
</table>
</body>
</html>
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.