Dreamwaver如何设定div层的对齐方式
资源介绍
Dreamwaver如何设定div层的对齐方式:
<html>
<head>
<style. type="text/css">
<!--
div{
border:1px solid #000000;
text-align:center;
padding-top:expression(parseInt(this.style.height)/2-parseInt(this.childNodes(0).scrollHeight)/2);
}
//-->
</style>
</head>
<body>
请将 图片(可多张) 或 其它内容 插入<span></span>标签中<br>
<div style="width:200px;height:200px">
<span>
<img src="/images/grss.gif"><br>
<img src="/images/grss.gif"><br>
<img src="/images/grss.gif">
</span>
</div>
<P>
<div style="width:200px;height:200px">
<span>
<img src="http://www.baidu.com/img/logo.gif"/>
</span>
</div>
<P>
<div style="width:200px;height:200px">
<span>
asddsf
</span>
</div>
<P>
</body>
</html>