摘要: 1.水平居中<style type="text/css"> .className{ width:270px; height:150px; margin:0 auto;}</style>2.水平垂直居中 css写法 <style type="text/css"> .className{ width:270px; height:150px; position:absolute; left:50%; top:50%; margin:-75px 0 0 -135px;} </style>3.水平垂直居中 js写法& 阅读全文
posted @ 2011-06-09 17:16 cxfzxj9898 阅读(360) 评论(0) 推荐(0)