导航

2011年2月23日

摘要: 对于 HTML 元素水平居中 body{margin:0 auto;width:1000px;} /*页面居中*/ div{margin:0 auto;width:200px;} /*div相对于父类居中 */ /* 注释:使用 margin:0 auto;必须于 width同时使用否则不生效 所有方便起见直接设为 */ *{margin:0 auto;} /*所有都居中 想让其生效 就单独加 width:?px */ 2. 对于 HTML 元素垂直居中 div{height:20px;line-height:20px;} /*对于 纯文字 line-height = height 就可以将文 阅读全文

posted @ 2011-02-23 15:45 夹心刺猬 阅读(195) 评论(0) 推荐(0)