CSS
zhengzhe1937
这个作者很懒,什么都没留下…
展开
-
【CSS】margin:0 auto居中问题
关于将元素居中,可能有很多方法 ,但是CSS钟爱的可能只有margin:0 auto了。但有时候margin:0 auto;可能并不是万能的,有时候margin:0 auto;也不起作用;我遇到的有下列两种原因:1,margin:0 auto;是要跟width:**px; 结合着用的。要不然默认的元素一般是将浏览器横向平铺,那样的话就无所谓居中了。给定所要居中的元素一个宽度(当然了,这个宽转载 2012-09-17 21:58:40 · 954 阅读 · 0 评论 -
CSS基础整理
#body{ margin: top right buttom left; /*外边距*/ padding: top right buttom left; /*内边距*/}#border{ border-width: thin; border-color: red; border-style: hidden;原创 2012-09-18 13:22:09 · 383 阅读 · 0 评论 -
CSS div水平垂直居中和div置于底部
一、水平居中.hor_center { margin: 0 auto;}二、水平垂直居中.content { width: 360px; height: 240px;}.ver_hor_center { position: absolute; top: 50%; left: 50%; ma转载 2013-05-02 09:38:53 · 3974 阅读 · 0 评论