html中输入框的大小宽度设置还有加一个图片并且设置居中
发布网友
发布时间:2022-04-19 06:40
我来回答
共1个回答
热心网友
时间:2022-04-19 08:09
<html>
<head>
<script>
function cc()
{
var cf=document.body.clientWidth;
if(cf<=1900)
{
cf=-(1900-cf)/2
}
else if(cf>1900)
{
cf=(cf-1900)/2
}
document.getElementById("m1").style.marginLeft=cf;
alert(cf)
}
</script>
</head>
<body onLoad="cc()">
<div style=" width:100%; overflow:hidden;" id="a">
<div style="width:1900px; height:400px; margin-left:-10%;" id="m1"><img src="123.jpg" width="1900" height="400" ></div>
</div>
</body>
</html>