HTML 网页设计 填空题 谁会啊 谢谢了

HTML 网页设计 填空题 谁会啊 谢谢了,第1张

<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

再把div的style加上margin:0auto

<divstyle="height:500pxwidth:500pxmargin:0auto"></div>

<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"老渗>

<html>

<head>

<metahttp-equiv="Content-Type"content="text/htmlcharset=gb2312"/>

<title>css控制层居中的方法</title>

</head>

<body>

<divstyle="height:500pxwidth:500px"侍羡脊>dflzzp</div><!--这个层不居中-->

<divstyle="height:500pxwidth:500pxmargin:0auto">dflzzp</div><!--这个层居中-->

</body>

</派斗html>

1.ASP网页编程

<table width="80%" border="0" align="center" cellpadding="4" cellspacing="1" bgcolor="#3F69E9">

<tr>

<%

dim i'定义变量i

for i=1 to 50 '设置i初始值为1 结束值为50循环下面的td单元格

%>

<td align="center" bgcolor="#9ADAFC" onmouseout ="this.style.backgroundColor='#9ADAFC'" onmouseover ="this.style.backgroundColor='#EDF8FE'"><font size="-6" color="#FF0000"><%=i-1%></font></td>

<!--td里面的属性只是为了美观,所以也可以不写 font是设置字体的也可以不写-->

<%

if i mod 10=0 then'当i是磨喊大10的倍数时就换行

response.Write"</tr><tr>"

end if

next

%>

</tr>

</table>

2、IP地址

<%

realip = Request.ServerVariables("HTTP_X_FORWARDED_FOR")

proxy = Request.ServerVariables("REMOTE_ADDR")

if realip = "" then

zhenshiip = proxy

else

zhenshiip = realip

end if

if left(zhenshiip,6)="211.69" then'假如收到的ip地址瞎竖的前6位是“211.69”则显示下面的欢迎信息反之则提示非法

response.Write("<script>alert('欢迎光临!')window.location='渗磨想要到达的页面'</script>")

else

response.Write("<script>alert('非法用户!')window.history(-1)</script>")

end if

%>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/12311704.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-24
下一篇 2023-05-24

发表评论

登录后才能评论

评论列表(0条)

保存